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