using System; namespace HL_FristAidPlatform_Models { /// /// 卒中患者基本信息 /// public class ApoplexyPatientInfoModel { /// /// 患者Guid /// public string PatientGuid { get; set; } /// /// 登记时间 /// public DateTime? RegisterTime { get; set; } /// /// 标签卡编号 /// public long WristStrapID { get; set; } /// /// 真实姓名 /// 对应卒中接口文档:人口学信息表(Archives); aName /// public string Name { get; set; } /// /// 人员种类0正常,1三无人员 /// public int Category { get; set; } /// /// 性别 /// 对应卒中接口文档:人口学信息表(Archives);aSex /// public int Gender { get; set; } /// /// 年龄 /// public int Age { get; set; } /// /// 出生日期 /// 对应卒中接口文档:人口学信息表(Archives);aBirthdate /// public string Birthday { get; set; } /// /// 身份证 /// 对应卒中接口文档:人口学信息表(Archives);aCard /// public string IdentityCard { get; set; } /// /// 移动电话 /// public string MobilePhone { get; set; } /// /// 住院号 /// 对应卒中接口文档:档案信息表(ArchivesCases);acHzCode /// public string AdmissionNumber { get; set; } /// /// 门诊号 /// public string OutpatientNumber { get; set; } /// /// 民族 /// 对应卒中接口文档:人口学信息表(Archives);aNation /// public string Nation { get; set; } /// /// 发病情况记录 /// public string DiseaseRecord { get; set; } /// /// 入院途径 1.急诊 2.门诊 3.其他医疗机构转入 9.其他 /// 当 ACZLType 包 含:;01;02;03;04;05;时,填写该 字段 /// public string BCRyType { get; set; } /// /// 来院方式 :1.本院急救车 2.当地 120 3.外院转院 4.自行来院 5:院内发病 /// 当 ACZLType 包 含:;01;02;03;04;05;时,填写该 字段 /// public string BCLyType { get; set; } /// /// 所属院区GUID /// public string HospitalGuid { get; set; } /// /// 发病地址(省) /// public string Province { get; set; } /// /// 发病地址(市) /// public string City { get; set; } /// /// 发病地址区(县) /// public string Area { get; set; } /// /// 发病地址 /// public string Attack_Address { get; set; } /// /// 联系地址 /// public string Address { get; set; } /// /// 病情程度 /// 1 濒危 /// 2 危重 /// 3急症 /// 4非急症 /// 5已死亡 /// public string IllnessLevel { get; set; } /// /// 创建人编号 /// 对应卒中接口文档:人口学信息表(Archives);aLocalUser /// public long CreatorID { get; set; } /// /// 发病时间 /// public string TimeOfOnset { get; set; } /// /// 呼救120时间 /// public string CallTime { get; set; } /// /// 120出车时间 /// public string DepartureTime { get; set; } /// /// 到达现场时间 /// public string ReachTime { get; set; } /// /// 到达医院大门时间 /// public string ArrivalHospitalTime { get; set; } } }