using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class TraumaHospitalizationTimeModelDTO
{
///
/// 月份
///
public string Month { get; set; }
///
/// 严重创伤病人平均住院天数
///
public string AvgHospitalizationDays { get; set; }
///
/// 严重创伤病人平均ICU住院天数
///
public string AvgICUDays { get; set; }
}
}