From 9ca0dc6e7833715b875cc9b6b91d5c497b2bae8b Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期三, 30 八月 2023 09:05:45 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/hazardInvestigationSystem into zf --- src/main/java/com/gk/hotwork/Domain/dto/resp/AreaInspectionCountRespDTO.java | 63 +++++++++++++++++++++++++++++++ 1 files changed, 63 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/hotwork/Domain/dto/resp/AreaInspectionCountRespDTO.java b/src/main/java/com/gk/hotwork/Domain/dto/resp/AreaInspectionCountRespDTO.java new file mode 100644 index 0000000..1f7d52d --- /dev/null +++ b/src/main/java/com/gk/hotwork/Domain/dto/resp/AreaInspectionCountRespDTO.java @@ -0,0 +1,63 @@ +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; +} -- Gitblit v1.9.2