| | |
| | | return comMngPopulationService.getGridPopulationAdminList(populationListDTO); |
| | | } |
| | | |
| | | /** |
| | | * 综治后台-删除居民 |
| | | * @param ids 居民id集合 |
| | | * @return 删除结果 |
| | | */ |
| | | @PostMapping("/grid/del") |
| | | public R delGridPopulationAdmin(@RequestBody List<Long> ids) { |
| | | return comMngPopulationService.delGridPopulationAdmin(ids); |
| | | } |
| | | |
| | | /** |
| | | * 综治后台-居民详情 |
| | | * @param populationId 居民id |
| | | * @return 居民详情 |
| | | */ |
| | | @GetMapping("/grid/get") |
| | | public R getGridPopulationAdminDetail(@RequestParam("populationId")Long populationId) { |
| | | return comMngPopulationService.getPopulationDetailApp(populationId); |
| | |
| | | public R binding() { |
| | | return comMngPopulationService.binding(); |
| | | } |
| | | |
| | | @GetMapping("/grid/statistics") |
| | | public R getGridPopulationStatistics(@RequestParam("communityId") Long communityId) { |
| | | return comMngPopulationService.getGridPopulationStatistics(communityId); |
| | | } |
| | | |
| | | |
| | | } |