package com.gk.hotwork.Domain.dto.resp;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @email 1603559716@qq.com
|
* @author: zf
|
* @date: 2023/8/22
|
* @time: 15:59
|
*/
|
@Data
|
public class AreaInspectionCountRespDTO {
|
/**
|
* 地区名称
|
*/
|
private String province;
|
|
private String city;
|
|
private String area;
|
/**
|
* 企业总数
|
*/
|
private int companyTotal;
|
/**
|
* 创建自查清单企业数
|
*/
|
private int checkCompanyCount;
|
/**
|
* 自查清单总数
|
*/
|
private int checkTotal;
|
/**
|
* 未结单
|
*/
|
private int toDoTotal;
|
/**
|
* 结单数据
|
*/
|
private int endTotal;
|
/**
|
* 未自查企业
|
*/
|
private int unCheckCompanyCount;
|
/**
|
* 隐患总数
|
*/
|
private int hdTotal;
|
/**
|
* 未整改数量
|
*/
|
private int unRectifyTotal;
|
/**
|
* 已整改数量
|
*/
|
private int rectifyTotal;
|
/**
|
* 整改率
|
*/
|
private BigDecimal rectifyRate;
|
}
|