From ab4e150d41e0200b64a75c59b668a9385b7782fd Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 23 四月 2024 10:18:03 +0800
Subject: [PATCH] 表名修改

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java |   33 +++++++++++++++++++++++++++++++--
 1 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java
index 0fbc203..b4e0715 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java
@@ -1,7 +1,10 @@
 package com.ycl.platform.domain.vo;
 
+import annotation.Excel;
 import com.ycl.platform.base.AbsVo;
 import com.ycl.platform.domain.entity.Report;
+
+import java.util.Date;
 import java.util.List;
 import java.time.LocalDateTime;
 import org.springframework.lang.NonNull;
@@ -23,28 +26,54 @@
 
     /** 杩愮淮鍗曚綅ID */
     private Integer unitId;
+    @Excel(name = "杩愮淮鍗曚綅")
     private String unitName;
 
     /** 杩愮淮浜哄憳ID */
     private Integer peopleId;
+    @Excel(name = "鎶ュ浜哄憳")
     private String peopleName;
 
     /** 鐐逛綅ID */
     private Integer pointId;
+    @Excel(name = "鐐逛綅")
     private String pointName;
 
-    /** 瀹℃牳鏃堕棿 */
-    private LocalDateTime auditingTime;
+    /** 鎶ュ绫诲瀷 */
+    @Excel(name = "鎶ュ绫诲瀷")
+    private String reportType;
 
     /** 鎶ュ鍐呭 */
+    @Excel(name = "鎶ュ鍐呭")
     private String reportContent;
 
     /** 涓婃姤鏉愭枡 */
+    @Excel(name = "涓婃姤鏉愭枡")
     private String reportMaterials;
 
     /** 鏁呴殰绫诲瀷 */
+    @Excel(name = "鏁呴殰绫诲瀷")
     private String errorType;
 
+    /** 瀹℃牳鏃堕棿 */
+    @Excel(name = "瀹℃牳鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date auditingTime;
+
+    /**
+     * 鐢熸晥鏃堕棿
+     */
+    private Date beginCreateTime;
+
+    /**
+     * 澶辨晥鏃堕棿
+     */
+    private Date endCreateTime;
+
+    /**
+     * 瑁呭~
+     */
+    private Integer status;
+
     public static ReportVO getVoByEntity(@NonNull Report entity, ReportVO vo) {
         if(vo == null) {
             vo = new ReportVO();

--
Gitblit v1.8.0