| | |
| | | } |
| | | |
| | | /** |
| | | * 查询当前社区所有标签以及预设标签 |
| | | * @return 标签集合 |
| | | */ |
| | | @PostMapping("listtag/getTag") |
| | | public R listTags(@RequestParam("communityId") Long communityId){ |
| | | return userService.listTags(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 人员详情 |
| | | * @param userId 用户id |
| | | * @return 人员详情 |
| | |
| | | } |
| | | |
| | | /** |
| | | * 通过账号和渠道查询用户信息 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | @GetMapping("getUserByAccount") |
| | | public R getSysUserVOByAccount(@RequestParam(value = "account") String account,@RequestParam(value = "type") Integer type){ |
| | | return userService.getSysUserVOByAccount(account, type); |
| | | } |
| | | |
| | | /** |
| | | *分页查询人口管理 |
| | | * @param pageInputUserDTO 查询参数 |
| | | * @return 分页数据 |