From eb806b5ec0bb72536e78c1a7fcffb94bcd24cbbe Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期五, 26 四月 2024 18:24:27 +0800
Subject: [PATCH] 考核结果应用规则(算钱)新增、展示

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckPublish.java |  179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 179 insertions(+), 0 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckPublish.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckPublish.java
new file mode 100644
index 0000000..6e6bd16
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckPublish.java
@@ -0,0 +1,179 @@
+package com.ycl.platform.domain.entity;
+
+import annotation.Excel;
+import com.ycl.system.entity.BaseEntity;
+import org.apache.commons.lang.builder.ToStringBuilder;
+import org.apache.commons.lang.builder.ToStringStyle;
+
+import java.math.BigDecimal;
+
+/**
+ * 鑰冩牳鍙戝竷瀵硅薄 t_check_publish
+ * 
+ * @author ruoyi
+ * @date 2024-04-01
+ */
+public class CheckPublish extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 涓婚敭 */
+    private Long id;
+
+    /** 鑰冩牳鍚嶇О */
+    @Excel(name = "鑰冩牳鍚嶇О")
+    private String examineName;
+
+    /** 鑰冩牳妯℃澘id */
+    @Excel(name = "鑰冩牳妯℃澘id")
+    private Long templateId;
+
+    /** 鑰冩牳棰戠巼 */
+    @Excel(name = "鑰冩牳棰戠巼")
+    private Long frequency;
+
+    /** 鑰冩牳绫诲瀷 */
+    @Excel(name = "鑰冩牳绫诲瀷")
+    private Long examineCategory;
+
+    /** 鎶ヨ闃堝�煎垎鏁� */
+    @Excel(name = "鎶ヨ闃堝�煎垎鏁�")
+    private BigDecimal alarmScore;
+
+    /** 鎻忚堪 */
+    @Excel(name = "鎻忚堪")
+    private String description;
+
+    /** 鍚敤 / 鍋滅敤 */
+    @Excel(name = "鍚敤 / 鍋滅敤")
+    private Long state;
+
+    /** 瀹℃牳鐘舵�� */
+    @Excel(name = "瀹℃牳鐘舵��")
+    private Long auditState;
+
+    /**  */
+    private Long createUser;
+
+    /**  */
+    private Long updateUser;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setExamineName(String examineName) 
+    {
+        this.examineName = examineName;
+    }
+
+    public String getExamineName() 
+    {
+        return examineName;
+    }
+    public void setTemplateId(Long templateId) 
+    {
+        this.templateId = templateId;
+    }
+
+    public Long getTemplateId() 
+    {
+        return templateId;
+    }
+    public void setFrequency(Long frequency) 
+    {
+        this.frequency = frequency;
+    }
+
+    public Long getFrequency() 
+    {
+        return frequency;
+    }
+    public void setExamineCategory(Long examineCategory) 
+    {
+        this.examineCategory = examineCategory;
+    }
+
+    public Long getExamineCategory() 
+    {
+        return examineCategory;
+    }
+    public void setAlarmScore(BigDecimal alarmScore) 
+    {
+        this.alarmScore = alarmScore;
+    }
+
+    public BigDecimal getAlarmScore() 
+    {
+        return alarmScore;
+    }
+    public void setDescription(String description) 
+    {
+        this.description = description;
+    }
+
+    public String getDescription() 
+    {
+        return description;
+    }
+    public void setState(Long state) 
+    {
+        this.state = state;
+    }
+
+    public Long getState() 
+    {
+        return state;
+    }
+    public void setAuditState(Long auditState) 
+    {
+        this.auditState = auditState;
+    }
+
+    public Long getAuditState() 
+    {
+        return auditState;
+    }
+    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;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("examineName", getExamineName())
+            .append("templateId", getTemplateId())
+            .append("frequency", getFrequency())
+            .append("examineCategory", getExamineCategory())
+            .append("alarmScore", getAlarmScore())
+            .append("description", getDescription())
+            .append("state", getState())
+            .append("auditState", getAuditState())
+            .append("createTime", getCreateTime())
+            .append("updateTime", getUpdateTime())
+            .append("createUser", getCreateUser())
+            .append("updateUser", getUpdateUser())
+            .toString();
+    }
+}

--
Gitblit v1.8.0