StableVersion4.3/HL_FristAidPlatform_DTO/Service/TraumaIntervalStatisticsMod...

34 lines
741 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
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; }
}
}