| | |
| | | */ |
| | | @GetMapping("exportNineType") |
| | | @ApiOperationSupport(order = 13) |
| | | @ApiOperation(value = "导出九小统计", notes = "传入user") |
| | | @ApiOperation(value = "导出九小统计", notes = "传入place") |
| | | public void exportNineType(PlaceVO place, HttpServletResponse response) { |
| | | List<NinePlaceExcel> list = placeService.export(place); |
| | | ExcelUtil.export(response, "房屋数据" + DateUtil.time(), "房屋数据表", list, NinePlaceExcel.class); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 场所警务网格处理 |
| | | */ |
| | | @GetMapping("/placeJwGridCodeHandle") |
| | | public R placeJwGridCodeHandle() { |
| | | return R.data(placeService.placeJwGridCodeHandle()); |
| | | } |
| | | } |