fuliqi
2024-04-02 ea3e40330575519d9a4c7dbe4f6d63e4a22ea861
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
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_default_publish
 * 
 * @author ruoyi
 * @date 2024-04-01
 */
public class DefaultPublish extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    private Long id;
 
    /** 考核名称 */
    @Excel(name = "考核名称")
    private String examineName;
 
    /**  */
    @Excel(name = "")
    private Long templateId;
 
    /** 频率 */
    @Excel(name = "频率")
    private Long frequency;
 
    /** 报警分数 */
    @Excel(name = "报警分数")
    private BigDecimal alarmScore;
 
    /** 合同考核描述 */
    @Excel(name = "合同考核描述")
    private String description;
 
    /** 启用/停用 */
    @Excel(name = "启用/停用")
    private Long state;
 
    /** 审核状态 */
    @Excel(name = "审核状态")
    private Long auditState;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setExamineName(String examineName) 
    {
        this.examineName = examineName;
    }
 
    public String getExamineName() 
    {
        return examineName;
    }
    public void setTemplateId(Long templateId) 
    {
        this.templateId = templateId;
    }
 
    public Long getTemplateId() 
    {
        return templateId;
    }
    public void setFrequency(Long frequency) 
    {
        this.frequency = frequency;
    }
 
    public Long getFrequency() 
    {
        return frequency;
    }
    public void setAlarmScore(BigDecimal alarmScore) 
    {
        this.alarmScore = alarmScore;
    }
 
    public BigDecimal getAlarmScore() 
    {
        return alarmScore;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setState(Long state) 
    {
        this.state = state;
    }
 
    public Long getState() 
    {
        return state;
    }
    public void setAuditState(Long auditState) 
    {
        this.auditState = auditState;
    }
 
    public Long getAuditState() 
    {
        return auditState;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("examineName", getExamineName())
            .append("templateId", getTemplateId())
            .append("frequency", getFrequency())
            .append("alarmScore", getAlarmScore())
            .append("description", getDescription())
            .append("state", getState())
            .append("auditState", getAuditState())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}