zhongrj
2024-01-26 19c0886badef2cb971b8bfd3d5eadea3cbe74bc4
src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
@@ -177,4 +177,25 @@
   }
   /**
    *
    */
   @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);
   }
}