38 lines
829 B
C#
38 lines
829 B
C#
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class DrvingCensusModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 待命车辆数
|
|
/// </summary>
|
|
public int StandByTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出动车辆数
|
|
/// </summary>
|
|
public int SendTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 今日总出车数
|
|
/// </summary>
|
|
public int ToDayDrvingTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 今日呼叫总数
|
|
/// </summary>
|
|
public int ToDayCallTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 累计接警次数
|
|
/// </summary>
|
|
public int CallTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 累计出车次数
|
|
/// </summary>
|
|
public int DrvingTotal { get; set; }
|
|
|
|
}
|
|
}
|