郑永安
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
60
package com.ruoyi.system.domain.resp;
 
import java.io.Serializable;
import java.util.List;
 
public class EnterpriseInfoSelectByCityResultRespDTO implements Serializable {
 
    private String city;
 
    //本市许可证30天内到期企业
    private Long oneMonthEnterpriseNum;
 
    //本市许可证60天内到期企业
    private Long twoMonthEnterpriseNum;
 
    //本市许可证90天内到期企业
    private Long threeMonthEnterpriseNum;
 
    private List<EnterpriseInfoSelectByCityRespDTO> companyInfoResults;
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city;
    }
 
    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;
    }
 
    public List<EnterpriseInfoSelectByCityRespDTO> getCompanyInfoResults() {
        return companyInfoResults;
    }
 
    public void setCompanyInfoResults(List<EnterpriseInfoSelectByCityRespDTO> companyInfoResults) {
        this.companyInfoResults = companyInfoResults;
    }
}