From b3b566ebdfed4005aaa513da3d5d2fd3924903cc Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 31 Jan 2024 16:17:54 +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