fuliqi
2024-04-02 32b4f6188f32e6c08e813efa98a25d94eacdc0c6
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
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;
 
    @Excel(name = "考核类型")
    private Long examineCategory;
    @Excel(name = "规则类型")
    private Long ruleCategory;
 
    public Long getRuleCategory() {
        return ruleCategory;
    }
 
    public void setRuleCategory(Long ruleCategory) {
        this.ruleCategory = ruleCategory;
    }
 
    public Long getExamineCategory() {
        return examineCategory;
    }
 
    public void setExamineCategory(Long examineCategory) {
        this.examineCategory = examineCategory;
    }
 
    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;
    }
 
    @Override
    public String toString() {
        return "TExamineScore{" +
                "id=" + id +
                ", score=" + score +
                ", unitId=" + unitId +
                ", examineId=" + examineId +
                ", examineCategory=" + examineCategory +
                ", ruleCategory=" + ruleCategory +
                '}';
    }
}