fuliqi
2024-03-19 e34df92d59f0df626c96ac400759d596364e0889
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
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_examine_score
 * 
 * @author ruoyi
 * @date 2024-03-13
 */
public class TExamineScore extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    private Long id;
 
    /** 分值 */
    @Excel(name = "分值")
    private BigDecimal score;
 
    /** 单位id */
    @Excel(name = "单位id")
    private Long unitId;
 
    /** 考核id */
    @Excel(name = "考核id")
    private Long examineId;
 
    /** 操作类型 1/2 系统打分/人工打分 */
    @Excel(name = "操作类型 1/2 系统打分/人工打分")
    private Long operateCategory;
 
    /** 积分类型 */
    @Excel(name = "积分类型")
    private Long scoreCategory;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setScore(BigDecimal score) 
    {
        this.score = score;
    }
 
    public BigDecimal getScore() 
    {
        return score;
    }
    public void setUnitId(Long unitId) 
    {
        this.unitId = unitId;
    }
 
    public Long getUnitId() 
    {
        return unitId;
    }
    public void setExamineId(Long examineId) 
    {
        this.examineId = examineId;
    }
 
    public Long getExamineId() 
    {
        return examineId;
    }
    public void setOperateCategory(Long operateCategory) 
    {
        this.operateCategory = operateCategory;
    }
 
    public Long getOperateCategory() 
    {
        return operateCategory;
    }
    public void setScoreCategory(Long scoreCategory) 
    {
        this.scoreCategory = scoreCategory;
    }
 
    public Long getScoreCategory() 
    {
        return scoreCategory;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("score", getScore())
            .append("unitId", getUnitId())
            .append("examineId", getExamineId())
            .append("operateCategory", getOperateCategory())
            .append("scoreCategory", getScoreCategory())
            .append("createTime", getCreateTime())
            .append("createBy", getCreateBy())
            .toString();
    }
}