From 30f7705239334a3df2c7a296fb11abd1b28355cb Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Fri, 02 Feb 2024 22:46:01 +0800
Subject: [PATCH] 机构新增字段,警务网格字段调整
---
src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java b/src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
index 0b1ddab..a552559 100644
--- a/src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
+++ b/src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
@@ -178,14 +178,24 @@
/**
- * 住户-标签 自定义分页
+ *
*/
- @GetMapping("/statisticalLabels")
+ @GetMapping("/getRegionStatisticalLabels")
@ApiOperation(value = "统计标签", notes = "")
public R<IPage<HouseholdLabelVO>> statisticalLabels(HouseholdLabelVO householdLabel, Query query) {
IPage<HouseholdLabelVO> pages = householdLabelService.statisticalLabels(Condition.getPage(query), householdLabel);
return R.data(pages);
}
+ /**
+ *
+ */
+ @GetMapping("/getCommunityStatisticalLabels")
+ @ApiOperation(value = "统计标签", notes = "")
+ public R<IPage<HouseholdLabelVO>> getCommunityStatisticalLabels(HouseholdLabelVO householdLabel, Query query) {
+ IPage<HouseholdLabelVO> pages = householdLabelService.getCommunityStatisticalLabels(Condition.getPage(query), householdLabel);
+ return R.data(pages);
+ }
+
}
--
Gitblit v1.9.3