New file |
| | |
| | | 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 org.apache.commons.lang.builder.ToStringBuilder; |
| | | import org.apache.commons.lang.builder.ToStringStyle; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 考核发布对象 t_check_publish |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-03-07 |
| | | */ |
| | | @Data |
| | | 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; |
| | | /** 审核状态 */ |
| | | private Short auditState; |
| | | @Excel(name = "审核人") |
| | | private String auditUser; |
| | | @Excel(name = "审核时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date auditTime; |
| | | @Excel(name = "审核意见") |
| | | private String auditDescription; |
| | | /** 描述 */ |
| | | @Excel(name = "描述") |
| | | private String description; |
| | | |
| | | public String getAuditUser() { |
| | | return auditUser; |
| | | } |
| | | |
| | | public void setAuditUser(String auditUser) { |
| | | this.auditUser = auditUser; |
| | | } |
| | | |
| | | public Date getAuditTime() { |
| | | return auditTime; |
| | | } |
| | | |
| | | public void setAuditTime(Date auditTime) { |
| | | this.auditTime = auditTime; |
| | | } |
| | | |
| | | public String getAuditDescription() { |
| | | return auditDescription; |
| | | } |
| | | |
| | | public void setAuditDescription(String auditDescription) { |
| | | this.auditDescription = auditDescription; |
| | | } |
| | | |
| | | 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) |
| | | { |
| | | 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 + |
| | | ", auditState=" + auditState + |
| | | ", auditUser='" + auditUser + '\'' + |
| | | ", auditTime=" + auditTime + |
| | | ", auditDescription='" + auditDescription + '\'' + |
| | | ", description='" + description + '\'' + |
| | | '}'; |
| | | } |
| | | } |