DangerEventOverviewVO.java 1.5 KB
package com.skua.modules.emergency.vo;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @auther kangwei
 * @create 2025-03-05-13:39
 */
@Data
public class DangerEventOverviewVO {
    /**厂站ID*/
    @ApiModelProperty(value = "厂站ID")
    private String departId;
    /**厂站名称*/
    @ApiModelProperty(value = "厂站名称")
    private String departName;
    /**隐患处理数*/
    @ApiModelProperty(value = "隐患处理中")
    private Integer yhNoHandleNum ;
    /**隐患已处理数*/
    @ApiModelProperty(value = "隐患已处理数")
    private Integer yhHandleNum;

    @ApiModelProperty(value = "'风险排查处理中'")
    private Integer fxpcNoHandleNum;
    @ApiModelProperty(value = "'风险排查:已经处理'")
    private Integer fxpcHandleNum;
    /**异常数*/
    @ApiModelProperty(value = "'风险区域数量'")
    private Integer fxqyNum;

    @ApiModelProperty(value = "'风险点数量'")
    private Integer fxdNum;

    @ApiModelProperty(value = "''隐患排查检查项''")
    private Integer jcxNum;

    public DangerEventOverviewVO() {
    }

    public DangerEventOverviewVO(Integer yhNoHandleNum, Integer yhHandleNum, Integer fxpcNoHandleNum, Integer fxpcHandleNum, Integer fxqyNum, Integer fxdNum, Integer jcxNum) {
        this.yhNoHandleNum = yhNoHandleNum;
        this.yhHandleNum = yhHandleNum;
        this.fxpcNoHandleNum = fxpcNoHandleNum;
        this.fxpcHandleNum = fxpcHandleNum;
        this.fxqyNum = fxqyNum;
        this.fxdNum = fxdNum;
        this.jcxNum = jcxNum;
    }
}