From bcc6047ef19e2bd7a83c7f6e6abcb2cd1d8107cc Mon Sep 17 00:00:00 2001
From: baizonghao <1719256278@qq.com>
Date: 星期五, 24 二月 2023 17:51:36 +0800
Subject: [PATCH] 按照报警时间统计
---
ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java b/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java
index 008bc80..2bc9b9e 100644
--- a/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java
+++ b/ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java
@@ -1,5 +1,6 @@
package com.ycl.dto.statistics;
+import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -20,42 +21,50 @@
/**
* 鍟嗘埛鍚嶇О
*/
+ @ExcelProperty(value = "鍟嗘埛鍚嶇О", index = 0)
private String name;
/**
* 浜嬩欢鎬绘暟
*/
+ @ExcelProperty(value = "浜嬩欢鎬绘暟", index = 1)
private Integer count;
/**
* 鍖呭崼鐢�
*/
+ @ExcelProperty(value = "鍖呭崼鐢�", index = 2)
private Integer sanitation;
/**
* 鍖呯З缁�
*/
+ @ExcelProperty(value = "鍖呯З缁�", index = 3)
private Integer orderliness;
/**
* 鍖呰鏂�
*/
+ @ExcelProperty(value = "鍖呰鏂�", index = 4)
private Integer facility;
/**
* 绔嬫
*/
+ @ExcelProperty(value = "绔嬫", index = 5)
private Integer register;
/**
* 宸插鏍�
*/
+ @ExcelProperty(value = "宸插鏍�", index = 6)
private Integer checked;
/**
* 绔嬫鐜�
*/
+ @ExcelProperty(value = "绔嬫鐜�", index = 7)
private Double registerRatio;
}
--
Gitblit v1.8.0