using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class PatientTriageDTO { /// /// 患者编号(GUID) /// public string PatientGUID { get; set; } /// /// Killip分级 /// public string Killip { get; set; } /// /// 标识颜色 /// public string SignArea { get; set; } /// /// 分诊科室 /// public string TriageDepartment { get; set; } /// /// 发病时间 /// public DateTime? Attack_Time { get; set; } /// /// 既往史 /// public string PastHistory { get; set; } /// /// 过敏史 /// public string AllergyHistory { get; set; } /// /// 分诊时间 /// public string TriageTime { get; set; } /// /// 来院方式 /// public string ComeHospital { get; set; } /// /// 印象诊断 /// public string DiagnosisImpression { get; set; } /// /// 症状部位 /// public string SiteSymptoms { get; set; } /// /// 首次医疗接触时间 /// public string FMCTime { get; set; } /// /// 首诊医生接触时间 /// public string FirstPhysicianTime { get; set; } /// /// 到达大门时间 /// public string ArrivalDoorTime { get; set; } /// /// /// public string MEWSScore { get; set; } /// /// 呼救时间 /// // public DateTime? CallTime { get; set; } /// /// 群伤事件ID /// public int EventID { get; set; } /// /// 病史 /// public string MedicalHistory { get; set; } /// /// 主诉 /// public string ChiefComplaint { get; set; } /// /// 急诊分诊绿色通道 /// public string IsGreenWay { get; set; } = "0"; /// /// 分诊科室名称 /// public string TriageDepartmentName { get; set; } /// /// 呼救时间 /// public string CallTime { get; set; } /// /// 事件名称 /// public string EventName { get; set; } } }