From 5ea8ef80312e8c1d3365abe7106622d676def195 Mon Sep 17 00:00:00 2001 From: huangzhen <867127663@qq.com> Date: 星期五, 30 九月 2022 16:41:09 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/ruoyi/doublePrevention/entity/dto/DataCountDangerLevelRespDO.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/dto/DataCountDangerLevelRespDO.java b/src/main/java/com/ruoyi/doublePrevention/entity/dto/DataCountDangerLevelRespDO.java new file mode 100644 index 0000000..0516b55 --- /dev/null +++ b/src/main/java/com/ruoyi/doublePrevention/entity/dto/DataCountDangerLevelRespDO.java @@ -0,0 +1,27 @@ +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; + } +} -- Gitblit v1.9.2