using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLY.Thick.Blowing.OBJ_INTERFACE
{
public class BULKDB_OBJ_INTERFACE
{
#region Pack
public class Pack_State
{
public int Count;
public DateTime StartTime;
public DateTime EndTime;
public bool IsFinished;
}
#endregion
#region GetValue
///
/// json Pack_State
///
public const UInt16 GET_STATE = 1;
#endregion
#region SetValue
#endregion
#region PushMsg
///
/// json Pack_State
///
public const UInt16 PUSH_STATE = 1;
///
/// json BulkDBTempFrameChangedEventArgs
///
public const UInt16 PUSH_TEMP_FRAME_CHANGED = 2;
#endregion
#region CallFunction
///
/// request: json Pack_GetFrameRequest
/// reponse: json Pack_GetFrameReponse
///
public const UInt16 CALL_GET_FRAME = 0;
///
/// request: json Pack_GetTrendRequest
/// reponse: json Pack_GetTrendReponse
///
public const UInt16 CALL_GET_TREND = 1;
///
/// reponse: json Pack_GetErrorRequest
/// reponse: json Pack_GetErrorReponse
///
public const UInt16 CALL_GET_ERROR = 2;
///
/// request: null
///
public const UInt16 CALL_FINISH = 3;
#endregion
}
}