namespace HL_FristAidPlatform_DTO { public class TraumaPatientHealthDTO { /// /// 患者guid /// public string GUID { get; set; } /// /// 瞳孔 0:正常 1:扩大 2:缩小 /// public int Pupil { get; set; } = -1; /// /// 光反射 0:正常 1:迟钝 2:消失 /// public int Reflex { get; set; } = -1; /// /// 心脏 :心律 0:齐 1:不齐 2:消失 /// public int Rhythm { get; set; } = -1; /// /// 循环 0:正常 1:脉搏有力 2:脉搏快 3:脉搏慢 4:脉搏消失 /// public int Loop { get; set; } = 1; /// /// 气道 0:通畅 1:阻塞 2:部分阻塞 /// public int AirwayOpen { get; set; } = -1; /// /// 胸部 0:正常 1:反常呼吸 2:压痛 3:隆起 4:塌陷 /// public int ChestAbnormal { get; set; } = -1; /// /// 骨折 0:无 1:有,闭合 2:有,开放 /// public int Fracture { get; set; } = 1; /// /// 四肢:肌力 0:正常 1:增强 2 :减弱 /// public int MRC { get; set; } /// /// 腹部:肠鸣音 0:正常 1:亢进 2:减弱 3:消失 /// public int BowelSound { get; set; } = -1; /// /// 修改用户 /// public long UpdateID { get; set; } } }