lin
2024-03-22 774c8b2ee14eef5fd10bbd46d85a180e7b19ab21
src/main/java/org/springblade/modules/house/controller/HouseController.java
@@ -106,6 +106,28 @@
   }
   /**
    * 房屋标签统计
    */
   @GetMapping("/labelStatistics")
   @ApiOperationSupport(order = 3)
   @ApiOperation(value = "房屋标签统计")
   public R labelStatistics(HouseVO house) {
      List<Map<String, Object>>  pages = houseService.labelStatistics( house);
      return R.data(pages);
   }
   /**
    * 房屋标签区域统计
    */
   @GetMapping("/labelCommunityStatistics")
   @ApiOperationSupport(order = 3)
   @ApiOperation(value = "房屋标签区域统计")
   public R labelCommunityStatistics(HouseVO house) {
      List<Map<String, Object>>  pages = houseService.labelCommunityStatistics( house);
      return R.data(pages);
   }
   /**
    * 房屋 新增
    */
   @PostMapping("/save")
@@ -236,4 +258,35 @@
      return R.data(detail);
   }
   /**
    * 房屋网格处理
    * @return
    */
   @GetMapping("/houseGridHandle")
   @ApiOperation(value = "房屋网格处理")
   public R houseGridHandle() {
      return R.data(houseService.houseGridHandle());
   }
   /**
    * 房屋警格处理
    * @return
    */
   @GetMapping("/houseJwGridHandle")
   @ApiOperation(value = "房屋警格处理")
   public R houseJwGridHandle() {
      return R.data(houseService.houseJwGridHandle());
   }
   /**
    * 房屋画像统计-按房屋标签统计
    * @return
    */
   @GetMapping("/getHouseLabelStatistic")
   @ApiOperation(value = "房屋画像统计")
   public R getHouseLabelStatistic(HouseVO house) {
      return R.data(houseService.getHouseLabelStatistic(house));
   }
}