| | |
| | | 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; |
| | |
| | | |
| | | 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 + '\'' + |