| | |
| | | * @return 标签集合 |
| | | */ |
| | | @PostMapping("listtag/getTag") |
| | | public R listTags(@RequestParam("communityId") Long communityId) { |
| | | return userService.listTags(communityId); |
| | | public R listTags() { |
| | | return userService.listTags(); |
| | | } |
| | | |
| | | /** |
| | |
| | | return userService.getUserListByCommunityId(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 检查当前用户是否是社区工作人员 |
| | | * @param phone |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("checkIsTeam") |
| | | public R checkCurrentUserIsTeam(String phone, Long communityId) { |
| | | return userService.checkCurrentUserIsTeam(phone, communityId); |
| | | } |
| | | } |