StableVersion4.3/HL_FristAidPlatform_Help/Model/InformationWarningStaisicsM...

50 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 创伤预警信息实体类
/// </summary>
public class InformationWarningStaisicsModel
{
/// <summary>
/// 预警总人数
/// </summary>
public int EarlyWarningTotal { get; set; }
/// <summary>
/// 呼叫创伤团队总人数
/// </summary>
public int CallTraumaTeamTotal { get; set; }
/// <summary>
/// 预警人数
/// </summary>
public int EarlyWarningCount { get; set; }
/// <summary>
/// 呼叫创伤团队人数
/// </summary>
public int CallTraumaTeamCount{ get; set; }
/// <summary>
/// 未预警患者人数
/// </summary>
public int NonEarlyWarningCount { get; set; }
/// <summary>
/// 预警数据集合
/// </summary>
public List<DataSetModel> EarlyWarningList { get; set; }
/// <summary>
/// 呼叫创伤团队数据集合
/// </summary>
public List<DataSetModel> CallTraumaTeamList { get; set; }
}
}