| | |
| | | import org.apache.commons.lang.builder.ToStringBuilder; |
| | | import org.apache.commons.lang.builder.ToStringStyle; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * 考核发布对象 t_check_publish |
| | | * |
| | |
| | | @Excel(name = "考核状态 0/1 启用 / 停用") |
| | | private Long state; |
| | | |
| | | /** 报警分数阈值 */ |
| | | @Excel(name = "报警分数阈值") |
| | | private BigDecimal alarmScore; |
| | | |
| | | private Long createUser; |
| | | @Excel(name = "创建人") |
| | | private String createUserName; |
| | |
| | | private String updateUserName; |
| | | |
| | | private Long updateUser; |
| | | /** 审核状态 */ |
| | | private Short auditState; |
| | | |
| | | /** 描述 */ |
| | | @Excel(name = "描述") |
| | | private String description; |
| | | |
| | | public Short getAuditState() { |
| | | return auditState; |
| | | } |
| | | |
| | | public void setAuditState(Short auditState) { |
| | | this.auditState = auditState; |
| | | } |
| | | |
| | | 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) |
| | |
| | | ", examineRange=" + examineRange + |
| | | ", frequency=" + frequency + |
| | | ", state=" + state + |
| | | ", alarmScore=" + alarmScore + |
| | | ", createUser=" + createUser + |
| | | ", createUserName='" + createUserName + '\'' + |
| | | ", updateUserName='" + updateUserName + '\'' + |
| | | ", updateUser=" + updateUser + |
| | | ", auditState=" + auditState + |
| | | ", description='" + description + '\'' + |
| | | '}'; |
| | | } |