xiangpei
2024-04-23 ab4e150d41e0200b64a75c59b668a9385b7782fd
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.math.BigDecimal;
 
/**
 * 合同打分对象 t_default_score
 *
 * @author ruoyi
 * @date 2024-04-01
 */
public class ContractScore extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    private Long id;
 
    /** 合同考核id */
    @Excel(name = "合同考核id")
    private Long publishId;
 
    /** 模板id */
    @Excel(name = "模板id")
    private Long templateId;
 
    /** 具体数量、个数、小时数 */
    @Excel(name = "具体数量、个数、小时数")
    private String num;
 
    /** 根据rule的打分方式结合template扣分系数和num,系统计算的分数 */
    @Excel(name = "根据rule的打分方式结合template扣分系数和num,系统计算的分数")
    private BigDecimal score;
 
    /**  */
    private Long createUser;
 
    /**  */
    private String createUserName;
 
    /**  */
    private Long updateUser;
 
    /**  */
    private String updateUserName;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
    public void setPublishId(Long publishId)
    {
        this.publishId = publishId;
    }
 
    public Long getPublishId()
    {
        return publishId;
    }
    public void setTemplateId(Long templateId)
    {
        this.templateId = templateId;
    }
 
    public Long getTemplateId()
    {
        return templateId;
    }
    public void setNum(String num)
    {
        this.num = num;
    }
 
    public String getNum()
    {
        return num;
    }
    public void setScore(BigDecimal score)
    {
        this.score = score;
    }
 
    public BigDecimal getScore()
    {
        return score;
    }
    public void setCreateUser(Long createUser)
    {
        this.createUser = createUser;
    }
 
    public Long getCreateUser()
    {
        return createUser;
    }
    public void setCreateUserName(String createUserName)
    {
        this.createUserName = createUserName;
    }
 
    public String getCreateUserName()
    {
        return createUserName;
    }
    public void setUpdateUser(Long updateUser)
    {
        this.updateUser = updateUser;
    }
 
    public Long getUpdateUser()
    {
        return updateUser;
    }
    public void setUpdateUserName(String updateUserName)
    {
        this.updateUserName = updateUserName;
    }
 
    public String getUpdateUserName()
    {
        return updateUserName;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("publishId", getPublishId())
            .append("templateId", getTemplateId())
            .append("num", getNum())
            .append("score", getScore())
            .append("createUser", getCreateUser())
            .append("createUserName", getCreateUserName())
            .append("updateUser", getUpdateUser())
            .append("updateUserName", getUpdateUserName())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}