| | |
| | | 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)); |
| | | } |
| | | |
| | | } |