From 32b4f6188f32e6c08e813efa98a25d94eacdc0c6 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 02 四月 2024 09:32:29 +0800 Subject: [PATCH] Revert "新考核" --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java | 229 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 229 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java new file mode 100644 index 0000000..fce5d43 --- /dev/null +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java @@ -0,0 +1,229 @@ +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 鏈堝害鑰冩牳/瀛e害鑰冩牳 */ + @Excel(name = "鑰冩牳棰戠巼 1/2 鏈堝害鑰冩牳/瀛e害鑰冩牳") + 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 + '\'' + + '}'; + } +} -- Gitblit v1.8.0