using System; namespace HL_FristAidPlatform_DTO { /// /// 120院前急救 /// public class T_Service_FirstAid_CallDTO { public string GUID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 性别 /// public int Gender { get; set; } /// /// 年龄 /// public int Age { get; set; } /// /// 医院GUID /// public string HospitalGuid { get; set; } /// /// 急救车编号 /// // public string VehicleNumber { get; set; } /// /// 急救车GUID 逗号分隔 /// public string VehicleGUID { get; set; } /// /// 急救车车牌号 逗号分隔 /// public string PlateNumber { get; set; } /// /// 标签卡 /// public long WristStrapID { get; set; } /// /// 呼救地址 /// public string Attack_Address { get; set; } /// /// 联系人 /// public string Contacts { get; set; } /// /// 联系人电话 /// public string ContactsPhone { get; set; } /// /// 创建人 /// public long CreateUser { get; set; } /// /// 心电设备编号 /// public string ECGNumber { get; set; } /// /// 派车编号 /// public string DispatchNo { get; set; } /// /// 候车地址 /// public string WaitingAddress { get; set; } /// /// 呼救原因 /// public string Pathogeny { get; set; } /// /// 呼救类型 /// public string CallType { get; set; } /// /// 重大事件 /// public int MajorEvents { get; set; } /// ///事故GUID /// public string AccidentGUID { get; set; } /// /// 事故等级GUID /// public string AccidentLeveGUID { get; set; } /// /// 异常调度 /// public string AbnormalScheduling { get; set; } /// /// 报警电话 /// public string PoliceCall { get; set; } /// /// DeleteFlag /// public int DeleteFlag { get; set; } = 0; /// /// 接警人 /// public string PoliceReceiver { get; set; } /// /// 空缺原因 /// public string ReasonsVacancy { get; set; } /// /// 调度席号 /// public string DispatchingNumber { get; set; } /// /// 患者人数 /// public int PatientNumber { get; set; } /// /// 随车人员 /// public string AccompanyinPersonnel { get; set; } /// /// 随车人员名称 /// public string AccompanyinPerName { get; set; } /// /// 医院名称 /// //public string HospitalName { get; set; } /// /// 派车人员 /// public string Dispatcher { get; set; } /// /// 特需要求 /// public string SpecialRequirements { get; set; } /// /// 备注 /// public string Note { get; set; } /// /// 主诉 /// public string ChiefComplaint { get; set; } /// /// 病史 /// public string MedicalHistory { get; set; } /// /// 既往史及药物过敏史 /// public string AllergyHistory { get; set; } /// /// 初步诊断 /// public string PreliminaryDiagnosis { get; set; } /// /// 病情 /// public string Illness { get; set; } /// /// 院前急救处置记录 /// public string DisposalRecord { get; set; } /// /// 医师签字 /// public string SignatureOfPhysician { get; set; } /// /// 新冠筛查 0 阴性 1 阳性 2 未筛查 /// public int COVID_19 { get; set; } /// /// Killip分级 /// public string Killip { get; set; } /// /// 标识颜色 /// public string SignArea { get; set; } /// /// 分诊科室 /// public string TriageDepartment { get; set; } /// /// 意识 /// public string Conscious { get; set; } /// /// 发病时间 /// public string DiseaseTime { get; set; } /// /// 标记是否可用多次分诊 1 多次分诊 0 分诊 /// public int Flag { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } = DateTime.Now; /// /// 调度时间:收到指定时间 /// public string SchedulingTime { get; set; } /// /// 报警时间 /// public string CallTime { get; set; } /// /// 出车时间 /// public DateTime DrivingTime { get; set; } /// /// 到达现场时间 /// public string ArrivalTime { get; set; } /// /// 返回医院时间 /// public string ReturnHospitalTime { get; set; } /// /// 病人上车时间 /// public string BoardingTime { get; set; } /// /// 站内待命时间 /// public string StationTime { get; set; } /// /// 中止任务时间 /// public string AbortTaskTime { get; set; } /// /// 途中待命时间 /// public string AwaitOrderTime { get; set; } /// /// 暂停调用时间 /// public string SuspendTime { get; set; } /// /// 恢复调用时间 /// public string RecoveryTime { get; set; } public int SystemModule { get; set; } public string Breathe { get; set; } public string Identitycard { get; set; } public string Birthday { get; set; } public string Nation { 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 ToAddress { get; set; } /// /// 接警医院GUID /// public string CallHospitalGuid { get; set; } } }