using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class T_Service_FirstAid_ApoplexyHighRiskScreeningDTO2 { /// /// ID /// public int ID { get; set; } /// /// GUID /// public string GUID { get; set; } /// /// /// public string PatientGUID { get; set; } /// /// 是否有高血压 /// public int Hypertension { get; set; } /// /// 是否有血脂 /// public int BoolFat { get; set; } /// /// 糖尿病 /// public int Diabetes { get; set; } /// /// 是否有房颤或心瓣膜病 /// public int HeartDisease { get; set; } /// /// 是否吸烟 /// public int Smoke { get; set; } /// /// 是否有足够运动量 /// public int AmountOfExercise { get; set; } /// /// 亲属是否有病史(冠心病或脑卒中病史) /// public int RelativeHistory { get; set; } /// /// 是否属于肥胖人群 /// public int Obese { get; set; } /// /// 是否TIA /// public int TIA { get; set; } /// /// 是否有既往脑卒中病史 /// public int Apoplexy { get; set; } /// /// 是否为高危人群 0 低危 1 高危 2中危 3正常 /// public int HighRisk { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 分享人ID/建档人 /// public long ShareUserID { get; set; } /// /// 分享人姓名 /// public string ShareUserName { get; set; } /// /// 分享人科室/建档科室 /// public string ShareUserDepartment { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } = DateTime.Now; //联系地址 public string ContactAddress { get; set; } //参与者签名 public byte[] ParticipantSignature { get; set; } //参与者签名时间 public string ParticipantSignatureTime { get; set; } //项目工作人员签名 public byte[] ProjectStaffSign { get; set; } //项目工作人员签名时间 public string ProjectStaffSignTime { get; set; } /// /// 身高 /// public string Height { get; set; } /// /// 体重 /// public string Weight { get; set; } /// /// BMI /// public string BMI { get; set; } /// /// 初筛次数 /// public int InitialScreenNum { get; set; } = 1; /// /// 筛查来源 /// 0 院内 /// 1 院外 /// public int Source { get; set; } /// /// 筛查数据填报来源 /// 0 筛查系统 /// 1 app /// 2 扫码 /// public int Category { get; set; } } }