SNAPSHOT_OBJ_INTERFACE.cs 997 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
using FObjBase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FLY.FeedbackRenZiJia.OBJ_INTERFACE
{
    public class SNAPSHOT_OBJ_INTERFACE
    {


        #region Get

        #endregion

        #region Set

        #endregion

        #region Call

        /// <summary>
24
        /// request:int
潘栩锋's avatar
潘栩锋 committed
25 26 27 28 29 30 31 32 33
        /// reponse:FlyData_SnapShot
        /// </summary>
        public const UInt16 CALL_GET_SNAPSHOT = 14;
        /// <summary>
        /// request:FlyData_SnapShot
        /// reponse:null
        /// </summary>
        public const UInt16 CALL_SET_SNAPSHOT = 15;
        /// <summary>
34
        /// request:int
潘栩锋's avatar
潘栩锋 committed
35 36 37 38 39
        /// reponse:null
        /// </summary>
        public const UInt16 CALL_DEL_SNAPSHOT = 16;
        /// <summary>
        /// request:null
40
        /// reponse:List(int)
潘栩锋's avatar
潘栩锋 committed
41 42 43 44 45 46 47 48 49 50 51 52
        /// </summary>
        public const UInt16 CALL_GET_SNAPSHOT_LIST = 17;

        #endregion

        #region Push


        #endregion

    }
}