郑永安
2023-06-19 451e341df739f387201914b67323efa1c4f4c8d3
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
package com.ruoyi.system.domain.resp;
 
import java.io.Serializable;
 
public class CountProvinceDataRespDTO implements Serializable {
 
    private Long enterpriseNum;
 
    private Long majorHazardSourceNum;
 
    //本市许可证30天内到期企业
    private Long oneMonthEnterpriseNum;
 
    //本市许可证60天内到期企业
    private Long twoMonthEnterpriseNum;
 
    //本市许可证90天内到期企业
    private Long threeMonthEnterpriseNum;
 
    public Long getEnterpriseNum() {
        return enterpriseNum;
    }
 
    public void setEnterpriseNum(Long enterpriseNum) {
        this.enterpriseNum = enterpriseNum;
    }
 
    public Long getMajorHazardSourceNum() {
        return majorHazardSourceNum;
    }
 
    public void setMajorHazardSourceNum(Long majorHazardSourceNum) {
        this.majorHazardSourceNum = majorHazardSourceNum;
    }
 
    public Long getOneMonthEnterpriseNum() {
        return oneMonthEnterpriseNum;
    }
 
    public void setOneMonthEnterpriseNum(Long oneMonthEnterpriseNum) {
        this.oneMonthEnterpriseNum = oneMonthEnterpriseNum;
    }
 
    public Long getTwoMonthEnterpriseNum() {
        return twoMonthEnterpriseNum;
    }
 
    public void setTwoMonthEnterpriseNum(Long twoMonthEnterpriseNum) {
        this.twoMonthEnterpriseNum = twoMonthEnterpriseNum;
    }
 
    public Long getThreeMonthEnterpriseNum() {
        return threeMonthEnterpriseNum;
    }
 
    public void setThreeMonthEnterpriseNum(Long threeMonthEnterpriseNum) {
        this.threeMonthEnterpriseNum = threeMonthEnterpriseNum;
    }
}