using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO.Service { public class InformationWarningStaisicsDTO { /// /// 预警总人数 /// public int EarlyWarningTotal { get; set; } /// /// 呼叫创伤团队总人数 /// public int CallTraumaTeamTotal { get; set; } /// /// 预警人数 /// public int EarlyWarningCount { get; set; } /// /// 呼叫创伤团队人数 /// public int CallTraumaTeamCount { get; set; } /// /// 未预警患者人数 /// public int NonEarlyWarningCount { get; set; } /// /// 预警数据集合 /// public List EarlyWarningList { get; set; } /// /// 呼叫创伤团队数据集合 /// public List CallTraumaTeamList { get; set; } } }