using SqlSugar; using System; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 溶栓筛查表信息记录 /// public class T_Service_ChestPain_ThrombolysisScreening { /// /// ID /// [SugarColumn(IsIdentity = true)] public long ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 病人编号 /// public string PatientGuid { get; set; } /// /// 心电检查结果 /// public string EcgResult { get; set; } /// /// 适应症一;0:未选择 1:是 2:否 /// public int Indication_1 { get; set; } /// /// 适应症二;0:未选择 1:是 2:否 /// public int Indication_2 { get; set; } /// /// 适应症三;0:未选择 1:是 2:否 /// public int Indication_3 { get; set; } /// /// 适应症四;0:未选择 1:是 2:否 /// public int Indication_4 { get; set; } /// /// 适应症五;0:未选择 1:是 2:否 /// public int Indication_5 { get; set; } /// /// 适应症六;0:未选择 1:是 2:否 /// public int Indication_6 { get; set; } /// /// 禁忌症一;0:未选择 1:是 2:否 /// public int Contraindication_1 { get; set; } /// /// 禁忌症二;0:未选择 1:是 2:否 /// public int Contraindication_2 { get; set; } /// /// 禁忌症三;0:未选择 1:是 2:否 /// public int Contraindication_3 { get; set; } /// /// 禁忌症四;0:未选择 1:是 2:否 /// public int Contraindication_4 { get; set; } /// /// 禁忌症五;0:未选择 1:是 2:否 /// public int Contraindication_5 { get; set; } /// /// 禁忌症六;0:未选择 1:是 2:否 /// public int Contraindication_6 { get; set; } /// /// 禁忌症七;0:未选择 1:是 2:否 /// public int Contraindication_7 { get; set; } /// /// 禁忌症八;0:未选择 1:是 2:否 /// public int Contraindication_8 { get; set; } /// /// 禁忌症九;0:未选择 1:是 2:否 /// public int Contraindication_9 { get; set; } /// /// 禁忌症十;0:未选择 1:是 2:否 /// public int Contraindication_10 { get; set; } /// /// 禁忌症十一;0:未选择 1:是 2:否 /// public int Contraindication_11 { get; set; } /// /// 禁忌症十二;0:未选择 1:是 2:否 /// public int Contraindication_12 { get; set; } /// /// 能否溶栓治疗:0:未选择 1:是 2:否 /// public int Conclusion { get; set; } /// /// 溶栓医生编号(获取签名) /// public string Doctor { get; set; } /// /// 核查时间 /// public string ScreeningTime { 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; } } }