34 lines
741 B
C#
34 lines
741 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class TraumaIntervalStatisticsModelDTO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 月份
|
|||
|
/// </summary>
|
|||
|
public string Month { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 输血平均时间
|
|||
|
/// </summary>
|
|||
|
public string AvgBloodTransfusion { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 人工气道平均时间
|
|||
|
/// </summary>
|
|||
|
public string AvgArtificialAirway { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 紧急手术平均时间
|
|||
|
/// </summary>
|
|||
|
public string AvgEmergencyOperation { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|