package com.skua.modules.emergency.vo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * 风险库对象 * @author 11389 */ @Data public class RiskDatabaseResult { /**厂站ID*/ @ApiModelProperty(value = "厂站ID") private String departId; /**厂站名称*/ @ApiModelProperty(value = "厂站名称") private String departName; /**风险库数量*/ @ApiModelProperty(value = "风险库数量") private Integer fxkCount; /**安全隐患数*/ @ApiModelProperty(value = "安全隐患数") private Integer aqyhCount ; /**隐患排查数量*/ @ApiModelProperty(value = "隐患排查数量") private Integer yhpcCount; /**异常数*/ @ApiModelProperty(value = "异常数") private Integer ycCount; @ApiModelProperty(value = "巡检数量") private Integer xjCount; public RiskDatabaseResult(Integer fxkCount, Integer aqyhCount, Integer yhpcCount, Integer ycCount, Integer xjCount) { this.fxkCount = fxkCount; this.aqyhCount = aqyhCount; this.yhpcCount = yhpcCount; this.ycCount = ycCount; this.xjCount = xjCount; } }