57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class CheatPainFirstAidTimeStatisticsDTO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 月份
|
|||
|
/// </summary>
|
|||
|
public string Month { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 120平均分钟
|
|||
|
/// </summary>
|
|||
|
public string Avg120 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 急诊科平均分钟
|
|||
|
/// </summary>
|
|||
|
public string AvgEmergencyDepartment { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 介入室平均分钟
|
|||
|
/// </summary>
|
|||
|
public string AvgInterventionalRoom { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 急救过程平均分钟
|
|||
|
/// </summary>
|
|||
|
public string AvgFirstAidProcess { get; set; }
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 120数据
|
|||
|
/// </summary>
|
|||
|
public CheatPainFirstAidTimeStatisticsDataDTO Data120;
|
|||
|
/// <summary>
|
|||
|
/// 急诊科数据
|
|||
|
/// </summary>
|
|||
|
public CheatPainFirstAidTimeStatisticsDataDTO DataEmergencyDepartment;
|
|||
|
/// <summary>
|
|||
|
/// 介入室数据
|
|||
|
/// </summary>
|
|||
|
public CheatPainFirstAidTimeStatisticsDataDTO DataInterventionalRoom;
|
|||
|
/// <summary>
|
|||
|
/// 急救过程数据
|
|||
|
/// </summary>
|
|||
|
public CheatPainFirstAidTimeStatisticsDataDTO DataFirstAidProcess;
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|