| | |
| | | R setCommunityAuthType(@RequestParam("communityId")Long communityId,@RequestParam("type") Integer type){ |
| | | return eldersAuthService.setCommunityAuthType(communityId, type); |
| | | } |
| | | |
| | | /** |
| | | * 随手拍活动定时任务 |
| | | * @return 执行结果 |
| | | */ |
| | | @PostMapping("timeTaskEasyPhotoActivity") |
| | | public R timeTaskEasyPhotoActivity(){ |
| | | return comActEasyPhotoActivityService.timeTaskEasyPhotoActivity(); |
| | | } |
| | | |
| | | /** |
| | | * 社区随手拍列表统计 |
| | | * @param communityId 社区id |
| | | * @return 统计结果 |
| | | */ |
| | | @GetMapping("easyphoto/statistics") |
| | | public R easyPhotoStatistics(@RequestParam("communityId")Long communityId) { |
| | | return comActEasyPhotoService.easyPhotoStatistics(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 综治后台-查询社区列表 |
| | | * @return 社区列表 |
| | | */ |
| | | @GetMapping("/eventgrid/community/list") |
| | | public R getCommunityLists(){ |
| | | return comActService.getCommunityLists(); |
| | | } |
| | | } |