package com.ruoyi.doublePrevention.entity.dto;
|
|
public class DataCountDangerLevelRespDO {
|
|
//重大隐患数量
|
private Integer heavyRiskCount;
|
|
//一般隐患数量
|
private Integer lightRiskCount;
|
|
|
public Integer getHeavyRiskCount() {
|
return heavyRiskCount;
|
}
|
|
public void setHeavyRiskCount(Integer heavyRiskCount) {
|
this.heavyRiskCount = heavyRiskCount;
|
}
|
|
public Integer getLightRiskCount() {
|
return lightRiskCount;
|
}
|
|
public void setLightRiskCount(Integer lightRiskCount) {
|
this.lightRiskCount = lightRiskCount;
|
}
|
}
|