using SqlSugar; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 认证标准 /// public class T_Base_CertificationStandard { /// /// 编号 /// /// /// ID /// [SugarColumn(IsIdentity = true)] public long ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 认证版本编号 /// public string VersionGUID { get; set; } /// /// 标记 /// public string Stamp { get; set; } /// /// 内容 /// public string StandardContent { get; set; } /// /// 所占分值 /// public string Share { get; set; } /// /// 其他说明 /// public string Other { get; set; } /// /// 对应的类库名称 /// public string DLLName { get; set; } /// /// 窗体名称 /// public string FunctionName { get; set; } /// /// 是否关键指标0是1否 /// public int IsKey { get; set; } /// /// 胸痛基层版再灌注策略1:溶栓 2:转运PPCI 3:本院PPCI /// public string CP_First_Reperfusion { get; set; } /// /// 是否删除删除标记 0未删除 1已删除 /// public int DeleteFlag { get; set; } /// /// 排序 /// public int OrderBy { get; set; } } }