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;
|
}
|
}
|