From 387d3aca6fab1a07618bb8342ee522b3da2db9b1 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期日, 28 四月 2024 10:09:26 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

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

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
new file mode 100644
index 0000000..17b08cf
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
@@ -0,0 +1,64 @@
+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 org.springframework.format.annotation.DateTimeFormat;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * 鑰冩牳绉垎鏄庣粏瀵硅薄 t_check_score
+ * 
+ * @author ruoyi
+ * @date 2024-04-22
+ */
+@Data
+public class CheckScore
+{
+    private static final long serialVersionUID = 1L;
+
+    /**  */
+    private Long id;
+
+    /** 鍒嗗�� */
+    @Excel(name = "鍒嗗��")
+    private BigDecimal score;
+
+    /** deptid */
+    @Excel(name = "鍖哄幙")
+    private Long deptId;
+
+    /** 鑰冩牳妯℃澘id */
+    @Excel(name = "鑰冩牳妯℃澘id")
+    private Integer templateId;
+
+    /** 鑰冩牳鏍囩(鐪佸巺/甯傚眬) */
+    @Excel(name = "鑰冩牳鏍囩(鐪佸巺/甯傚眬)")
+    private Integer examineTag;
+
+    /** 鑰冩牳绫诲瀷(杞﹁締/浜鸿劯/瑙嗛) */
+    @Excel(name = "鑰冩牳绫诲瀷(杞﹁締/浜鸿劯/瑙嗛)")
+    private Integer examineCategory;
+    /** 淇敼鏃堕棿 */
+    @Excel(name = "淇敼鏃堕棿")
+    private Date updateTime;
+
+    /** 鍒涘缓鏃堕棿 */
+    @Excel(name = "鍒涘缓鏃堕棿")
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    private Date createTime;
+    /** 淇敼浜� */
+    @Excel(name = "淇敼浜�")
+    private Integer updateUser;
+    /** 鏄惁鍙戝竷 */
+    @Excel(name = "鏄惁鍙戝竷")
+    private String publish;
+
+    //鎶樼嚎鍥炬棩鏈熷弬鏁�
+    private String date;
+}

--
Gitblit v1.8.0