From ac9efc618210e1df40dfba9f779ca27739d2b343 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 08 五月 2024 17:29:00 +0800
Subject: [PATCH] 考核模板关联定时任务

---
 ycl-pojo/src/main/java/com/ycl/platform/base/CheckIndex.java |   30 +++++++++++++++++++++++++-----
 1 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/base/CheckIndex.java b/ycl-pojo/src/main/java/com/ycl/platform/base/CheckIndex.java
index b6485cc..55c23d9 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/base/CheckIndex.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/base/CheckIndex.java
@@ -4,11 +4,14 @@
 import com.fasterxml.jackson.annotation.JsonFormat;
 
 import java.util.Date;
+import java.util.List;
 
 public abstract class CheckIndex {
     public Long id;
-    //鏌ヨ鏉′欢锛屾棩鏈�
+    //鏌ヨ鏉′欢锛屾湀浠�
     public String date;
+    //鏌ヨ鏉′欢锛屾棩鏈�
+    public String day;
 
     @Excel(name = "鏃ユ湡",dateFormat = "yyyy-MM-dd")
     public Date createTime;
@@ -19,9 +22,9 @@
 
     /** 鑰冩牳鏍囩锛堢渷鍘�/甯傚眬锛� */
     @Excel(name = "鑰冩牳鏍囩", dictType = "platform_examine_tag")
-    public Long examineTag;
+    public Short examineTag;
 
-
+    public List<Integer> deptIds;
     public Long getId() {
         return id;
     }
@@ -62,11 +65,28 @@
         this.deptName = deptName;
     }
 
-    public Long getExamineTag() {
+    public Short getExamineTag() {
         return examineTag;
     }
 
-    public void setExamineTag(Long examineTag) {
+    public void setExamineTag(Short examineTag) {
         this.examineTag = examineTag;
     }
+
+    public List<Integer> getDeptIds() {
+        return deptIds;
+    }
+
+
+    public String getDay() {
+        return day;
+    }
+
+    public void setDay(String day) {
+        this.day = day;
+    }
+
+    public void setDeptIds(List<Integer> deptIds) {
+        this.deptIds = deptIds;
+    }
 }

--
Gitblit v1.8.0