fuliqi
2024-04-03 15f56cdd29e1f9a989ded5af2bae95f50998ad16
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
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 考核结果对象 t_check_result
 * 
 * @author ruoyi
 * @date 2024-04-01
 */
public class CheckResult extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    private Long id;
 
    /** 考核对象 */
    @Excel(name = "考核对象")
    private Long deptId;
 
    /** 考核发布 */
    @Excel(name = "考核发布")
    private Long publishId;
 
    /** 考核类型 */
    @Excel(name = "考核类型")
    private Long examineCategory;
 
    /** 考核分数 */
    @Excel(name = "考核分数")
    private BigDecimal checkScore;
 
    /** 是否发布 */
    @Excel(name = "是否发布")
    private Long publish;
 
    /** 考核时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "考核时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date checkTime;
 
    /** 逻辑删除 */
    private String deleted;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setDeptId(Long deptId) 
    {
        this.deptId = deptId;
    }
 
    public Long getDeptId() 
    {
        return deptId;
    }
    public void setPublishId(Long publishId) 
    {
        this.publishId = publishId;
    }
 
    public Long getPublishId() 
    {
        return publishId;
    }
    public void setExamineCategory(Long examineCategory) 
    {
        this.examineCategory = examineCategory;
    }
 
    public Long getExamineCategory() 
    {
        return examineCategory;
    }
    public void setCheckScore(BigDecimal checkScore) 
    {
        this.checkScore = checkScore;
    }
 
    public BigDecimal getCheckScore() 
    {
        return checkScore;
    }
    public void setPublish(Long publish) 
    {
        this.publish = publish;
    }
 
    public Long getPublish() 
    {
        return publish;
    }
    public void setCheckTime(Date checkTime) 
    {
        this.checkTime = checkTime;
    }
 
    public Date getCheckTime() 
    {
        return checkTime;
    }
    public void setDeleted(String deleted) 
    {
        this.deleted = deleted;
    }
 
    public String getDeleted() 
    {
        return deleted;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("deptId", getDeptId())
            .append("publishId", getPublishId())
            .append("examineCategory", getExamineCategory())
            .append("checkScore", getCheckScore())
            .append("publish", getPublish())
            .append("checkTime", getCheckTime())
            .append("updateTime", getUpdateTime())
            .append("deleted", getDeleted())
            .toString();
    }
}