zf
2023-08-30 464fe41610a39c3a06f070d5a01c930134ff0163
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
package com.gk.hotwork.Domain.dto.resp;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/8/22
 * @time: 15:59
 */
@Data
public class AreaInspectionCountRespDTO {
    /**
     * 地区名称
     */
    private String province;
 
    private String city;
 
    private String area;
    /**
     * 企业总数
     */
    private int companyTotal;
    /**
     * 创建自查清单企业数
     */
    private int checkCompanyCount;
    /**
     * 自查清单总数
     */
    private int checkTotal;
    /**
     * 未结单
     */
    private int toDoTotal;
    /**
     * 结单数据
     */
    private int endTotal;
    /**
     * 未自查企业
     */
    private int unCheckCompanyCount;
    /**
     * 隐患总数
     */
    private int hdTotal;
    /**
     * 未整改数量
     */
    private int unRectifyTotal;
    /**
     * 已整改数量
     */
    private int rectifyTotal;
    /**
     * 整改率
     */
    private BigDecimal rectifyRate;
}