| | |
| | | */ |
| | | @PostMapping("/population/list/app") |
| | | R getPopulationListByApp(@RequestBody PagePopulationListDTO populationListDTO); |
| | | |
| | | /** |
| | | * 根据人口id获取人口详情 |
| | | * @param populationId |
| | | * @return |
| | | */ |
| | | @GetMapping("/population/detail/app") |
| | | R getPopulationDetailByApp(@RequestParam("populationId") Long populationId); |
| | | |
| | | /** |
| | | * 修复人口加密问题 |
| | | * @return 修复结果 |
| | | */ |
| | | @GetMapping("/population/repair") |
| | | R getPopulationRepairByApp(); |
| | | |
| | | /** |
| | | * 工作大屏-社区动态模块数据统计 |
| | | * @param communityId 社区id |
| | | * @return 社区动态数据统计 |
| | | */ |
| | | @GetMapping("/screen/work/dynamic") |
| | | R dynamicWork(@RequestParam("communityId")Long communityId); |
| | | } |