using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class TraumaPatientAddDTO { /// /// 患者姓名 /// public string Name { get; set; } public int Category { get; set; } /// /// 年龄 /// public int Age { get; set; } /// /// 性别 /// public int Gender { get; set; } /// /// 身份证 /// public string IdentityCard { get; set; } /// /// 家庭地址 /// public string Address { get; set; } /// /// 发病地址 /// public string AttackAddress { get; set; } /// /// 地址(省) /// public string Province { get; set; } /// /// 地址(市) /// public string City { get; set; } /// /// 地址区(县) /// public string Area { get; set; } /// /// 呼叫救护车类型 /// 1 120救护车 /// 2 本院救护车 /// 3 外院救护车 /// public string AmbulanceType { get; set; } /// /// 其他来院方式 /// public string OtherComeHosptialWay { get; set; } /// /// 病情程度 /// 1 濒危 /// 2 危重 /// 3急症 /// 4非急症 /// 5已死亡 /// public string IllnessLevel { get; set; } /// /// MPDS症状分类 1 创伤 2 胸痛 3 卒中 4其他 /// public string MPDSType { get; set; } /// /// MPDS 保存ID,逗号分隔 /// public string MPDS { get; set; } /// /// MPDS文字 /// public string MPDSContent { get; set; } /// /// 来院方式 /// 1.呼救救护车 /// 2.外院转诊 /// 3.自行来院 /// 4.院内发病 /// 5.其他 /// public string ComeHosptialWay { get; set; } /// /// 自行来院方式 /// 1 打车 /// 2 自驾车 /// 3 公共交通 /// 4 警车 /// 5 不行 /// public string ZXLYComeHosptialWay { get; set; } /// /// 转院名称 /// public string HosptialName { get; set; } /// /// 跟车医生 /// public string FollowingDoctor { get; set; } /// /// 跟车护士 /// public string FollowingNurse { get; set; } /// /// 医院GIUD /// public string HospitalGuid { get; set; } /// /// 创建人编号 /// public long CreatorID { get; set; } /// /// 证件类型 /// public string Credentials_Type { get; set; } } }