xiangpei
2024-03-18 5719d901b424f3b9b60f46731e7b1cd607dae733
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
package com.ycl.platform.domain.vo;
 
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 TExamineScoreVO 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;
 
    private String unitName;
    private String examineName;
 
    public String getUnitName() {
        return unitName;
    }
 
    public void setUnitName(String unitName) {
        this.unitName = unitName;
    }
 
    public String getExamineName() {
        return examineName;
    }
 
    public void setExamineName(String examineName) {
        this.examineName = examineName;
    }
 
    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 "TExamineScoreVO{" +
                "id=" + id +
                ", score=" + score +
                ", unitId=" + unitId +
                ", examineId=" + examineId +
                ", operateCategory=" + operateCategory +
                ", scoreCategory=" + scoreCategory +
                ", unitName='" + unitName + '\'' +
                ", examineName='" + examineName + '\'' +
                '}';
    }
}