From a6696ed066a68c07f8bd97449eec370dde1921b0 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 19 三月 2024 11:41:15 +0800
Subject: [PATCH] 考核结果新增发布状态

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java |   66 +++++++++++++++++++++++++++-----
 1 files changed, 55 insertions(+), 11 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
index eee3d32..8f2889e 100644
--- 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
@@ -5,6 +5,8 @@
 import org.apache.commons.lang.builder.ToStringBuilder;
 import org.apache.commons.lang.builder.ToStringStyle;
 
+import java.math.BigDecimal;
+
 /**
  * 鑰冩牳鍙戝竷瀵硅薄 t_check_publish
  * 
@@ -28,7 +30,7 @@
 
     /** 鑰冩牳鑼冨洿 1/2 鍒嗗眬/甯傚眬 */
     @Excel(name = "鑰冩牳鑼冨洿 1/2 鍒嗗眬/甯傚眬")
-    private Long timeRange;
+    private Long examineRange;
 
     /** 鑰冩牳棰戠巼 1/2 鏈堝害鑰冩牳/瀛e害鑰冩牳 */
     @Excel(name = "鑰冩牳棰戠巼 1/2 鏈堝害鑰冩牳/瀛e害鑰冩牳")
@@ -38,17 +40,31 @@
     @Excel(name = "鑰冩牳鐘舵�� 0/1 鍚敤 / 鍋滅敤")
     private Long state;
 
-    /** $column.columnComment */
-    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
-    private Long createUser;
+    /** 鎶ヨ鍒嗘暟闃堝�� */
+    @Excel(name = "鎶ヨ鍒嗘暟闃堝��")
+    private BigDecimal alarmScore;
 
-    /** $column.columnComment */
-    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
+    private Long createUser;
+    @Excel(name = "鍒涘缓浜�")
+    private String createUserName;
+    @Excel(name = "淇敼浜�")
+    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;
@@ -56,6 +72,14 @@
 
     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)
@@ -77,12 +101,28 @@
         return templateId;
     }
 
-    public Long getTimeRange() {
-        return timeRange;
+    public Long getExamineRange() {
+        return examineRange;
     }
 
-    public void setTimeRange(Long timeRange) {
-        this.timeRange = timeRange;
+    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)
@@ -137,11 +177,15 @@
                 "id=" + id +
                 ", examineName='" + examineName + '\'' +
                 ", templateId=" + templateId +
-                ", timeRange=" + timeRange +
+                ", examineRange=" + examineRange +
                 ", frequency=" + frequency +
                 ", state=" + state +
+                ", alarmScore=" + alarmScore +
                 ", createUser=" + createUser +
+                ", createUserName='" + createUserName + '\'' +
+                ", updateUserName='" + updateUserName + '\'' +
                 ", updateUser=" + updateUser +
+                ", auditState=" + auditState +
                 ", description='" + description + '\'' +
                 '}';
     }

--
Gitblit v1.8.0