namespace HL_FristAidPlatform_DTO { /// /// 急诊分诊 /// public class EmergencyTriageDTO { /// /// 患者GUID /// public string PatientGuid { get; set; } /// /// 任务GUID 必传 /// public string TaskGUID { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 性别 /// public int Gender { get; set; } /// /// 年龄 /// public int Age { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 紧急联系人 /// public string EmergencyContact { get; set; } /// /// 紧急联系电话 /// public string EmergencyContactPhone { get; set; } /// /// 身份证号 /// public string IdentityCard { get; set; } /// /// 出生日期 /// public string Birthday { get; set; } /// /// 名族 /// public string Nation { get; set; } /// /// 发病地址 /// public string Attack_Address { get; set; } /// /// 处置记录 /// public string DisposalRecord { get; set; } /// /// 病种GUID /// public string PathogenyGUID { get; set; } /// /// 身份类型 /// public string IdentityType { get; set; } /// /// 初步诊断 /// public string PrimaryDiagnosis { get; set; } /// /// 病情 /// public string Illness { get; set; } /// /// 发病时间 /// public string Attack_Time { get; set; } /// /// 呼救时间 /// public string CallTime { get; set; } /// /// 住址 /// public string Address { get; set; } /// /// 职业 /// //public string Profession { get; set; } /// /// 意识 /// public string Conscious { get; set; } /// /// 脉搏 /// public string Pulse { get; set; } /// /// 心率 /// public string HeartRate { get; set; } /// /// 收缩压 /// public string SystolicPressure { get; set; } /// /// 舒张压 /// public string DiastolicPressure { get; set; } /// /// 体温 /// public string Temperature { get; set; } /// /// 呼吸 /// public string Breathing { get; set; } /// /// 病史 /// public string MedicalHistory { get; set; } /// /// 既往史及药物过敏史 /// public string AllergyHistory { get; set; } /// /// 主诉 /// public string ChiefComplaint { get; set; } /// /// Killip分级 /// public string Killip { get; set; } /// /// 标识颜色 /// public string SignArea { get; set; } /// /// 分诊科室 /// public string TriageDepartment { get; set; } /// /// /// public int SystemModelId { get; set; } /// /// 创建人 /// public long CreatorID { get; set; } /// /// 证件类型 /// 0:无 /// 1:身份证 /// 2:护照 /// 3:军官证 /// public string Credentials_Type { get; set; } /// /// 送往地址 /// public string TransportAddress { get; set; } /// /// 分诊时间 /// public string TriageTime { get; set; } /// /// 来院方式 /// public string ComeHospital { get; set; } /// /// 印象诊断 /// public string DiagnosisImpression { get; set; } /// /// 症状部位 /// public string SiteSymptoms { get; set; } /// /// 发热登记 /// public string FeverRegistration { get; set; } /// /// 发热时间 /// public string FeverTime { get; set; } /// /// 首次医疗接触时间 /// public string FMCTime { get; set; } /// /// 到达大门时间 /// public string ArrivalDoorTime { get; set; } /// /// 医院院区GUID /// public string HospitalGuid { get; set; } /// /// 三无人员Category=1 /// public string Category { get; set; } /// /// 急诊分诊绿色通道 /// public string IsGreenWay { get; set; } /// /// 群伤事件ID /// public int EventID { get; set; } /// /// 事件人数 /// public int EventNumber { get; set; } /// /// 事件名称 /// public string EventName { get; set; } } }