using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// ///业绩管理 /// [SugarTable("t_doc_achievement")] public class Doc_Achievement : Doc_Base { public Doc_Achievement() { } /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// 归属分类(子类型) /// public int? classification_id { get; set; } /// /// 项目id /// public int? project_id { get; set; } /// /// 名称 /// public string achievement_name { get; set; } /// /// 中标通知书 /// public string zbtzs_url { get; set; } /// /// 合同 /// public string ht_url { get; set; } /// /// 验收报告 /// public string ysbg_url { get; set; } /// /// 付款凭证 /// public string fkpz_url { get; set; } /// /// 用户评价 /// public string yhpj_url { get; set; } /// /// 获奖证书 /// public string hjzs_url { get; set; } /// /// 排序 /// public int? sort { get; set; } /// /// 关联分类 /// [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToOne, nameof(classification_id))] public Doc_Classification? DocClassification { get; set; } /// /// 关联项目 /// [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToOne, nameof(project_id))] public Document_ProjectInfo? DocProject { get; set; } } }