From db321b2c533fef1d5ddba16b3908693cd984cfb9 Mon Sep 17 00:00:00 2001 From: linwe <872216996@qq.com> Date: Sat, 23 Nov 2024 16:43:01 +0800 Subject: [PATCH] 添加一个过滤全景的条件 --- src/main/java/org/springblade/modules/yw/vo/IndParkInfoVO.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/springblade/modules/yw/vo/IndParkInfoVO.java b/src/main/java/org/springblade/modules/yw/vo/IndParkInfoVO.java index 659edf8..d8490d0 100644 --- a/src/main/java/org/springblade/modules/yw/vo/IndParkInfoVO.java +++ b/src/main/java/org/springblade/modules/yw/vo/IndParkInfoVO.java @@ -33,4 +33,34 @@ */ @ApiModelProperty(value = "地市", example = "") private String regionName; + + /** + * 救援人员数量 + */ + @ApiModelProperty(value = "救援人员数量", example = "") + private Integer recNum; + + /** + * 风险企业数量 + */ + @ApiModelProperty(value = "风险企业数量", example = "") + private Integer riskFirmNum; + + /** + * 保护目标数量 + */ + @ApiModelProperty(value = "保护目标数量", example = "") + private Integer proTarNum; + + /** + * 应急空间数量 + */ + @ApiModelProperty(value = "应急空间数量", example = "") + private Integer spaceNum; + + /** + * 应急池容量 + */ + @ApiModelProperty(value = "应急池容量", example = "") + private String emePool; } -- Gitblit v1.9.3