From 38b44e0c9996f06524903417f1d0a3f746b4550b Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 04 十二月 2023 17:47:09 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- 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