using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class ScreenPhysicalFitnessDTO { /// /// /// public string PatientGUID { get; set; } /// /// 筛查员:一般体征 /// public string SignScreener { get; set; } /// /// 检查时间(一般体征) 精确到天(2023-03-20) /// public string SignInspectionTime { get; set; } /// /// 身高 /// public string Height { get; set; } /// /// 体重 /// public string Weight { get; set; } /// /// BMI /// public string BMI { get; set; } /// /// 腰围 /// public string Waistline { get; set; } /// /// 筛查员:测量血压 /// public string MeasurementScreener { get; set; } /// /// 测量时间 精确到天 /// public string MeasurementInspectionTime { get; set; } /// /// 第一次收缩压 /// public string SBPOne { get; set; } /// /// 第一次舒张压 /// public string DBPOne { get; set; } /// /// 第一次脉搏 /// public string PulseOne { get; set; } /// /// 第二次收缩压 /// public string SBPTwo { get; set; } /// /// 第二次舒张压 /// public string DBPTwo { get; set; } /// /// 第二次脉搏 /// public string PulseTwo { get; set; } /// /// 筛查员:心脏听诊 /// public string StethoscopeScreener { get; set; } /// /// 检查时间(心脏听诊) 精确到天(2023-03-20) /// public string StethoscopeInspectionTime { get; set; } /// /// 心脏杂音 0 无 1 有 /// public string CardiacMurmur { get; set; } /// /// 心律 /// public string Rhythm { get; set; } /// /// 心电图检查时间 /// public string ECGInspectionTime { get; set; } /// /// 心电图检查人 /// public string ECGScreener { get; set; } /// /// 心电图检查结果 1 正常 0 异常 /// public string InspectionResults { get; set; } /// /// 异常类型 0 不齐 1 整齐 /// public string AbnormalResults { get; set; } /// /// 心电图文件 /// public string ECGFile { get; set; } /// /// 心电图结论 /// public string ECGConclusion { get; set; } /// /// 1 筛查 2 干预 /// public string Flag { get; set; } /// /// 创建人 /// public long CreateID { get; set; } } }