StableVersion4.3/HL_FristAidPlatform_DTO/Service/DrvingCensusDTO.cs

36 lines
817 B
C#

namespace HL_FristAidPlatform_DTO
{
public class DrvingCensusDTO
{
/// <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; }
}
}