| | |
| | | @Resource |
| | | private ComMngPopulationService comMngPopulationService; |
| | | |
| | | /** |
| | | * 首页大屏统计接口 |
| | | * @param communityId 社区id |
| | | * @return 统计结果 |
| | | */ |
| | | @GetMapping("/getScreenIndex") |
| | | public R index(@RequestParam("communityId") Long communityId) { |
| | | return R.ok(comMngPopulationService.getScreenIndex(communityId)); |
| | | } |
| | | |
| | | /** |
| | | * 事件大屏统计接口 |
| | | * @param communityId 社区id |
| | | * @return 统计结果 |
| | | */ |
| | | @GetMapping("/getScreenEvent") |
| | | public R event(@RequestParam("communityId") Long communityId) { |
| | | return R.ok(comMngPopulationService.getScreenEvent(communityId)); |
| | | } |
| | | |
| | | /** |
| | | * 民生大屏统计接口 |
| | | * @param communityId 社区id |
| | | * @return 统计结果 |
| | | */ |
| | | @GetMapping("/getScreenCivil") |
| | | public R civil(@RequestParam("communityId") Long communityId) { |
| | | return R.ok(comMngPopulationService.getScreenCivil(communityId)); |