| | |
| | | return R.ok(comMngPopulationService.getScreenCivil(communityId)); |
| | | } |
| | | |
| | | /** |
| | | * 获取社区网格 |
| | | * |
| | | * @param communityId 社区id |
| | | * @return 网格数据 |
| | | */ |
| | | @GetMapping("/getScreenGirds") |
| | | public R grids(@RequestParam("communityId") Long communityId) { |
| | | return R.ok(comMngPopulationService.getScreenGirds(communityId)); |
| | | } |
| | | |
| | | /** |
| | | * 事件大屏查询事件详情 |
| | | * |
| | | * @param eventDetailDTO 请求参数 |
| | | * @return 事件详情 |
| | | */ |
| | | @PostMapping("/getScreenEventDetail") |
| | | public R eventDetail(@RequestBody BigScreenEventDetailDTO eventDetailDTO) { |
| | | return R.ok(comMngPopulationService.getScreenEventDetail(eventDetailDTO)); |