zhanghua
2025-04-14 1cad14bca191807e18705c3a5526eda8151be439
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.ycl.dto.statistics;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
 
/**
 * UnlawfulShopDto 门前三包统计
 *
 * @version V1.0
 * @author: AI
 * @date: 2022-11-01 17:09
 **/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UnlawfulShopDto {
 
    /**
     * 商户名称
     */
    @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;
 
}