using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class InspectionStaisicsDTO { /// /// 1.全身快速CT /// 2.全身胸部X片 /// 3.全身骨盆X片 /// 4.FAST检查 /// public string InspectionType { get; set; } /// /// 数据集合 /// public List InspectionList { get; set; } } public class DoubleDataSetModel { /// /// /// public double Number { get; set; } /// /// /// public string TimeDate { get; set; } } }