package com.ruoyi.system.entity; import java.io.Serializable; public class CountProvinceDataDO 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; } }