fuliqi
2024-08-31 b890afe0d93b9856bcfe6829ec51a69e232ce0d7
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
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
import lombok.experimental.Accessors;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 考核模板对象 t_check_template
 *
 * @author ruoyi
 * @date 2024-04-01
 */
@Data
@Accessors(chain = true)
public class CheckTemplate
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    private Integer id;
 
    /** 模板名称 */
    @Excel(name = "模板名称")
    private String templateName;
 
    /** 调整系数 */
    @Excel(name = "调整系数")
    private BigDecimal adjustCoefficient;
 
    /** 调整方式:乘除 */
    @Excel(name = "调整方式:乘除")
    private String adjustWay;
    /** 考核标签(省厅 市局)*/
    @Excel(name = "考核标签")
    private Short examineTag;
    /** 考核类型 */
    @Excel(name = "考核类型")
    private Short examineCategory;
 
    /** 定时任务id*/
    @Excel(name = "定时任务id")
    private Integer jobId;
 
    /** 启用/停用 */
    @Excel(name = "启用/停用")
    private String status;
 
    /** 区县 */
    @Excel(name = "区县")
    private String deptId;
 
    /** 报警分数 */
    @Excel(name = "报警分数")
    private BigDecimal alarmScore;
    /** 考核频率 */
    @Excel(name = "考核频率")
    private Short frequency;
    /** 考核描述 */
    @Excel(name = "考核描述")
    private String description;
 
    private Long createUser;
    private String createUserName;
    private Long updateUser;
    private String updateUserName;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    /** 逻辑删除 */
    private Integer deleted;
 
 
 
}