liaoxujun@qq.com
2023-09-01 82f8cf8f853252cd24bc150fc84a7ac8e3427148
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using SqlSugar;
 
namespace DocumentServiceAPI.Model.cyDocumentModel
{
    ///<summary>
    ///业绩管理
    ///</summary>
    [SugarTable("t_doc_achievement")]
    public class Doc_Achievement : Doc_Base
    {
        public Doc_Achievement()
        {
        }
 
        /// <summary>
        /// id
        /// </summary>           
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }              
 
        /// <summary>
        /// 归属分类(子类型)
        /// </summary>           
        public int? classification_id { get; set; }
 
        /// <summary>
        /// 项目id
        /// </summary>
        public int? project_id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>           
        public string achievement_name { get; set; }
 
        /// <summary>
        /// 中标通知书
        /// </summary>
        public string zbtzs_url { get; set; }
 
        /// <summary>
        /// 合同
        /// </summary>           
        public string ht_url { get; set; }
 
        /// <summary>
        /// 验收报告
        /// </summary>
        public string ysbg_url { get; set; }
 
        /// <summary>
        /// 付款凭证
        /// </summary>
        public string fkpz_url { get; set; }
 
        /// <summary>
        /// 用户评价
        /// </summary>
        public string yhpj_url { get; set; }
 
        /// <summary>
        /// 获奖证书
        /// </summary>
        public string hjzs_url { get; set; }
 
        /// <summary>
        /// 关联分类
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(classification_id))]
        public Doc_Classification? DocClassification { get; set; }
 
        /// <summary>
        /// 关联项目
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(project_id))]
        public Document_ProjectInfo? DocProject { get; set; }
    }
}