From c4c1c6cf89781eb06dc02b677a8954fdb2666c43 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期三, 16 七月 2025 22:39:06 +0800
Subject: [PATCH] 添加时间筛选

---
 ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java b/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java
index bcd8e99..7fd6241 100644
--- a/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java
+++ b/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java
@@ -1,7 +1,9 @@
 package com.ycl.dto.statistics;
 
+import com.alibaba.excel.annotation.ExcelIgnore;
 import com.alibaba.excel.annotation.ExcelProperty;
 import lombok.AllArgsConstructor;
+import lombok.Builder;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 
@@ -16,8 +18,13 @@
 @Data
 @AllArgsConstructor
 @NoArgsConstructor
+@Builder
 public class UnlawfulDto {
-
+    /**
+     * 绫诲瀷鍚嶇О
+     */
+    @ExcelIgnore
+    private Long id;
     /**
      * 绫诲瀷鍚嶇О
      */
@@ -34,7 +41,7 @@
      * 鍗犳瘮
      */
     @ExcelProperty(value = "鍗犳瘮", index = 2)
-    private Double ratio;
+    private String ratio;
 
     /**
      * 绔嬫
@@ -70,17 +77,17 @@
      * 瀹℃牳鐜�
      */
     @ExcelProperty(value = "瀹℃牳鐜�", index = 8)
-    private Double checkedRatio;
+    private String checkedRatio;
 
     /**
      * 绔嬫鐜�
      */
     @ExcelProperty(value = "绔嬫鐜�", index = 9)
-    private Double registerRatio;
+    private String registerRatio;
 
     /**
      * 鍑嗙‘鐜�
      */
     @ExcelProperty(value = "鍑嗙‘鐜�", index = 10)
-    private Double accuracyRatio;
+    private String accuracyRatio;
 }

--
Gitblit v1.8.0