zhongrj
2024-03-12 363e5732ff101c0b66bd641467fddc94e9419bdb
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);
   }
}