namespace HL_FristAidPlatform_DTO
{
///
/// 急诊室信息表
///
public class T_Service_Apoplexy_EmergencyRoomDTO
{
///
/// ID
///
public long ID { get; set; }
///
/// GUID
///
public string GUID { get; set; }
///
/// 患者GUID
///
public string PatientGuid { get; set; }
///
/// 神内会诊医生
///
public string NeurologyClinicConsultant { get; set; }
///
/// 神外会诊医生
///
public string NeurosurgeryConsultationConsultant { get; set; }
///
/// 呼吸
///
public int Breathe { get; set; }
///
/// 心率
///
public int HeartRate { get; set; }
///
/// 血压
///
public int BloodPressure { get; set; }
///
/// 体温
///
public int AnimalHeat { get; set; }
///
/// 血糖
///
public int BloodGlucose { get; set; }
///
/// NIHSS卒中量表
///
public string NIHSS { get; set; }
///
/// 治疗决策医生
///
public string DecisionMaker { get; set; }
///
/// 阿司匹林
///
public string Aspirin { get; set; }
///
/// 氯吡格雷
///
public string Clopidogrel { get; set; }
///
/// 华法林
///
public string Warfarin { get; set; }
///
/// 利伐沙班
///
public string Rivaroxaban { get; set; }
///
/// 其他
///
public string Other { get; set; }
///
/// 所属报表类型0:公用;1:脑出血手术数据直报表;2:颅内动脉瘤手术数据直报表;3:CEACAS数据直报表;4:静脉溶栓血管内介入治疗数据直报表;9:卒中联盟数据报表
///
public int ReportType { get; set; }
///
/// 删除标记0未删除1已删除
///
public int DeleteFlag { get; set; }
///
/// 分检诊结果
///
public string TriageResults { get; set; }
///
/// 卒中团队人员签字
///
public string StrokeTeam { get; set; }
///
/// 是否高血压 0否 1是
///
public string Hypertension { get; set; }
///
/// 是否糖尿病
///
public string Diabetes { get; set; }
///
/// 是否冠心病
///
public string CoronaryHeartDisease { get; set; }
///
/// 是否房颤
///
public string AtrialFibrillation { get; set; }
///
/// 是否脑梗死
///
public string Hyperlipidemia { get; set; }
///
/// 是否脑出血
///
public string HemorrhagicDisorders { get; set; }
///
/// 是否消化道出血
///
public string Gastrohelcoma { get; set; }
///
/// 是否大手术
///
public string ArteryDissection { get; set; }
///
/// 是否头颅外伤
///
public string Smoke { get; set; }
///
/// 是否肿瘤病史
///
public string Tumour { get; set; }
///
/// 是否其他病史
///
public string Aneurysm { get; set; }
///
/// 其他病史
///
public string AneurysmOther { get; set; }
///
/// 现病史
///
public string PresentIllness { get; set; }
///
/// 备注
///
public string Remarks { get; set; }
///
/// 抗血小板
///
public string Antiplatelet { get; set; }
///
/// 抗凝
///
public string Anticoagulation { get; set; }
///
/// 降压药
///
public string Depressor { get; set; }
///
/// 降糖药
///
public string Hypoglycemic { get; set; }
///
/// 降脂药
///
public string LipidLowering { get; set; }
///
/// 药物过敏史
///
public string AllergicDrugs { get; set; }
///
/// 过敏史
///
public string AllergicHistory { get; set; }
///
/// 心电图检查时间
///
public string ECGExaminationTime { get; set; }
///
/// 心电图报告时间
///
public string ECGReportTime { get; set; }
///
/// 采血时间
///
public string BloodCollectionTime { get; set; }
///
/// 血常规报告时间
///
public string BloodRoutineReportTime { get; set; }
///
/// 凝血常规报告时间
///
public string CoagulationRoutineReportTime { get; set; }
///
/// 到达CT室时间
///
public string ArrivalCTRoomTime { get; set; }
///
/// CT检查完成时间
///
public string CTExaminationCompletionTime { get; set; }
///
/// 离开CT室时间
///
public string LeaveCTRoomTime { get; set; }
///
/// CT报告时间
///
public string CTReportTime { get; set; }
///
/// 启动导管室时间
///
public string StartCatheterRoomTime { get; set; }
///
/// 到达导管室时间
///
public string ArrivalCatheterRoomTime { get; set; }
#region 绿道转归
///
/// 患者去向
///
public string PatientLocation { get; set; }
///
/// 住院科室
///
public string InpatientDepartment { get; set; }
///
/// 患者离开急诊时间
///
public string LeaveEmergencyTime { get; set; }
///
/// 死亡时间
///
public string DeathTime { get; set; }
///
/// 急诊留观时间
///
public string ObservationTime { get; set; }
///
/// 备注
///
public string EmergencyRemark { get; set; }
///
/// 住院医生
///
public string Residentphysician { get; set; }
#endregion
}
}