using SqlSugar; using System; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 首次医疗接触+检查+给药信息 /// public class T_Service_ChestPain_FirstMedicalReception { /// /// ID /// [SugarColumn(IsIdentity = true)] public long ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 患者编号(GUID) /// public string PatientGuid { get; set; } /// /// 首次医疗接触机构代码 0:未选择;1:其它医疗机构 ;2:120 ;3:本院急诊科;4:本院心内科门诊;5:本院其它科室;6:本院心内科病房 /// public int First_Organization { get; set; } /// /// 首次医疗接触机构名称 /// public string First_Organization_Name { get; set; } /// /// 首次接触医护人员姓名 /// public string First_Doctor_Name { get; set; } /// /// 首次医疗接触时间 /// public string First_Organization_Time { get; set; } /// /// 院前首份心电图 /// public string OutHospital_ECG_Time { get; set; } /// /// 院内首份心电图 /// public string InHospital_ECG_Time { get; set; } /// /// 首份心电图确诊时间 /// public string ECG_Diagnose_Time { get; set; } /// /// 是否远程心电传输 0:未选择;1:是;2:否 /// public int Is_Remote_Ecgtran { get; set; } /// /// 传输时间 /// public string Remote_Ecgtran_Time { get; set; } /// /// 传输方式1:实时监控;2:微信群;3:短信 /// public int Remote_Ecgtran_Type { get; set; } /// /// 意识 /// public string Be_Conscious_Of { get; set; } /// /// 呼吸次/分钟 /// public string Breathe { get; set; } /// /// 脉搏 /// public string Pulse { get; set; } /// /// 心率 /// public string Heart_Rate { get; set; } /// /// 血压 /// public string Blood_Pressure { get; set; } /// /// Killip分级1:I级(no CHF);2:II级(rales and/or JVD);3:III级(pulmonary edema);4:IV级(cardiogenic shock) /// public int Killip_Level { get; set; } /// /// 肌钙蛋白:抽血时间 /// public string Troponin_Sampling_Time { get; set; } /// /// 肌钙蛋白:报告时间 /// public string Troponin_Report_Time { get; set; } /// /// cTnI值 /// public string CTnI_Value { get; set; } /// /// cTnI单位1:ng/ml;2:ug/l;3:ng/l;4:pg/ml;5:mg/l;6:无单位 /// public int CTnI_Unit { get; set; } /// /// cTnI单位状态 阳性;阴性 /// public string CTnI_Status { get; set; } /// /// cTnT值 /// public string CTnT_Value { get; set; } /// /// cTnT单位1:ng/ml;2:ug/l;3:ng/l;4:pg/ml;5:mg/l;6:无单位 /// public int CTnT_Unit { get; set; } /// /// cTnT单位状态 阳性; 阴性 /// public string CTnT_Status { get; set; } /// /// 血清肌酐(cr)值 /// public string Cr_Value { get; set; } /// /// 血清肌酐(cr)单位1:umol/L;0:无单位 /// public int Cr_Unit { get; set; } /// /// 抗血小板首次药时间 /// public string Acs_Delivery_Time { get; set; } /// /// 阿司匹林值单位mg /// public string Aspirin_Dose { get; set; } /// /// 0:氯吡格雷;1: 替格瑞洛 /// public int Aspirin_Dose_Type { get; set; } /// /// 剂量单位mg /// public string Acs_Drug_Dose { get; set; } /// /// 首次抗凝给药1:是;0:否 /// public int Is_Anticoagulation { get; set; } /// /// 给药时间 /// public string Anticoagulation_Time { get; set; } /// /// 药物1:普通肝素;2:低分子肝素;3:比伐卢定;4:磺达肝癸钠 /// public int Anticoagulation_Drug { get; set; } /// /// 计量(含单位) /// public string Anticoagulation_Unit { get; set; } /// /// 院前溶栓筛查1:合适;0:不合适 /// public int Is_Thrombolytic_Screening { get; set; } /// /// 院前溶栓治疗1有0无 /// public int Is_Thrombolytic_Therapy { get; set; } /// /// 是否直达溶栓0:未选择;1:是;2:否 /// public int Is_Direct { get; set; } /// /// 溶栓场所0:其它医院:1:救护车 /// public string Thrombolytic_Site { get; set; } /// /// 开始知情同意时间 /// public string Start_Agree_Time { get; set; } /// /// 签署知情同意书 /// public string Sign_Agree_Time { get; set; } /// /// 开始溶栓时间 /// public string Throm_Start_Time { get; set; } /// /// 溶栓结束时间 /// public string Throm_End_Time { get; set; } /// /// 溶栓后造影时间 /// public string Start_Radiography_Time { get; set; } /// /// 溶栓药物 第一代,第二代,第三代 /// public string Throm_Drug_Type { get; set; } /// /// 溶栓药物剂量 全量,半量 /// public string Throm_Drug_Code { get; set; } /// /// 溶栓再通0:未选择 1:是 2:否 /// public int Is_Repatency { get; set; } /// /// Grace评估选项值#分割 /// public string Grace_Code { get; set; } /// /// Grace评估选项值文字#分割 /// public string Grace_CodeText { get; set; } /// /// Grace评估发病后曾出现心脏骤停1有0无 /// public int Is_Arrest { get; set; } /// /// Grace评估心电图ST段是否改变1有0无 /// public int Is_Change { get; set; } /// /// Grace评估心肌坏死标志物是否升高1有0无 /// public int Is_Rise { get; set; } /// /// Grace分值 /// public string Grace_Value { get; set; } /// /// 危险分层0:极高危;1:高危;2:中危;3:低危 /// public int Risk_Lamination { get; set; } /// /// 删除标记0未删除1已删除 /// public int DeleteFlag { get; set; } /// /// 创建时间 /// public DateTime CreationDate { get; set; } /// /// 创建人编号 /// public long CreatorID { get; set; } /// /// 创建人 /// public string Creator { get; set; } /// /// 最后编辑时间 /// public DateTime EditTime { get; set; } /// /// 最后编辑人编号 /// public long EditorID { get; set; } /// /// 最后编辑人 /// public string Editor { get; set; } } }