fuliqi
2024-03-12 1c0ac830ea2835bad033137a9154ef1c3e587dcb
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
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_check_publish
 * 
 * @author ruoyi
 * @date 2024-03-07
 */
public class TCheckPublish extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 考核名 */
    @Excel(name = "考核名")
    private String examineName;
 
    /** 考核模板id */
    @Excel(name = "考核模板id")
    private Long templateId;
 
    /** 考核范围 1/2 分局/市局 */
    @Excel(name = "考核范围 1/2 分局/市局")
    private Long examineRange;
 
    /** 考核频率 1/2 月度考核/季度考核 */
    @Excel(name = "考核频率 1/2 月度考核/季度考核")
    private Long frequency;
 
    /** 考核状态 0/1 启用 / 停用 */
    @Excel(name = "考核状态 0/1 启用 / 停用")
    private Long state;
 
    /** 报警分数阈值 */
    @Excel(name = "报警分数阈值")
    private BigDecimal alarmScore;
 
    private Long createUser;
    @Excel(name = "创建人")
    private String createUserName;
    @Excel(name = "修改人")
    private String updateUserName;
 
    private Long updateUser;
 
    /** 描述 */
    @Excel(name = "描述")
    private String description;
 
    public String getExamineName() {
        return examineName;
    }
 
    public void setExamineName(String examineName) {
        this.examineName = examineName;
    }
 
    public BigDecimal getAlarmScore() {
        return alarmScore;
    }
 
    public void setAlarmScore(BigDecimal alarmScore) {
        this.alarmScore = alarmScore;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setTemplateId(Long templateId) 
    {
        this.templateId = templateId;
    }
 
    public Long getTemplateId() 
    {
        return templateId;
    }
 
    public Long getExamineRange() {
        return examineRange;
    }
 
    public void setExamineRange(Long examineRange) {
        this.examineRange = examineRange;
    }
 
    public String getCreateUserName() {
        return createUserName;
    }
 
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
 
    public String getUpdateUserName() {
        return updateUserName;
    }
 
    public void setUpdateUserName(String updateUserName) {
        this.updateUserName = updateUserName;
    }
 
    public void setFrequency(Long frequency)
    {
        this.frequency = frequency;
    }
 
    public Long getFrequency() 
    {
        return frequency;
    }
    public void setState(Long state) 
    {
        this.state = state;
    }
 
    public Long getState() 
    {
        return state;
    }
    public void setCreateUser(Long createUser) 
    {
        this.createUser = createUser;
    }
 
    public Long getCreateUser() 
    {
        return createUser;
    }
    public void setUpdateUser(Long updateUser) 
    {
        this.updateUser = updateUser;
    }
 
    public Long getUpdateUser() 
    {
        return updateUser;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
 
    @Override
    public String toString() {
        return "TCheckPublish{" +
                "id=" + id +
                ", examineName='" + examineName + '\'' +
                ", templateId=" + templateId +
                ", examineRange=" + examineRange +
                ", frequency=" + frequency +
                ", state=" + state +
                ", alarmScore=" + alarmScore +
                ", createUser=" + createUser +
                ", createUserName='" + createUserName + '\'' +
                ", updateUserName='" + updateUserName + '\'' +
                ", updateUser=" + updateUser +
                ", description='" + description + '\'' +
                '}';
    }
}