linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
src/main/java/org/springblade/modules/house/controller/UserHouseLabelController.java
@@ -189,20 +189,26 @@
   /**
    *
    * 街道重点人员标签统计
    * @param householdLabel
    * @param query
    * @return
    */
   @GetMapping("/getRegionStatisticalLabels")
   @ApiOperation(value = "统计标签", notes = "")
   @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);
   }
   /**
    *
    * 社区重点人员标签统计
    * @param householdLabel
    * @param query
    * @return
    */
   @GetMapping("/getCommunityStatisticalLabels")
   @ApiOperation(value = "统计标签", notes = "")
   @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);