| | |
| | | import com.panzhihua.common.model.dtos.community.NoticeReadDTO; |
| | | import com.panzhihua.common.model.dtos.grid.*; |
| | | import com.panzhihua.common.model.dtos.user.*; |
| | | import com.panzhihua.common.model.vos.EditUserInfoPassAppDTO; |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.*; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import com.panzhihua.common.utlis.ClazzUtils; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 微心愿搜索社区团队人员列表 |
| | | * @param param 请求参数 |
| | | * @param communityId 社区id |
| | | * @return 社区团队人员列表 |
| | | */ |
| | | @PostMapping("listactivitymanager2") |
| | | public R listActivityManager2(@RequestParam("param") String param, @RequestParam("communityId") Long communityId) { |
| | | return userService.listActivityManager2(param, communityId); |
| | | } |
| | | |
| | | /** |
| | | * 分页查询人脸识别 |
| | | * |
| | | * @param loginUserInfoVO 查询参数 |
| | |
| | | /** |
| | | * 分页查询人口管理 |
| | | * |
| | | * @param loginUserInfoVO 查询参数 |
| | | * @param userInfoVO 查询参数 |
| | | * @return 分页数据 |
| | | */ |
| | | @PostMapping("pageuser") |
| | | public R pageUser(@RequestBody LoginUserInfoVO loginUserInfoVO) { |
| | | return userService.pageUser(loginUserInfoVO); |
| | | public R pageUser(@RequestBody AppletUserInfoVO userInfoVO) { |
| | | return userService.pageUser(userInfoVO); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return 协议集合 |
| | | */ |
| | | @PostMapping("listagreement") |
| | | public R listAgreement() { |
| | | return userService.listAgreement(); |
| | | public R listAgreement(@RequestParam("communityId") Long communityId) { |
| | | return userService.listAgreement(communityId); |
| | | } |
| | | |
| | | /** |
| | |
| | | return userService.noTips(userId); |
| | | } |
| | | |
| | | /** |
| | | * 查询社区的收益说明 |
| | | * @param communityId 社区id |
| | | * @return 收益说明 |
| | | */ |
| | | @PostMapping("listagreements") |
| | | public R listAgreements(@RequestParam("communityId") Long communityId) { |
| | | return userService.listAgreements(communityId); |
| | | } |
| | | |
| | | @PostMapping("user/getUserGrids") |
| | | public R getGridIsOk(@RequestParam("userId") Long userId) { |
| | | return userService.getGridIsOk(userId); |
| | | } |
| | | |
| | | @GetMapping("getGridsMemberList") |
| | | public R getGridsMemberList(@RequestParam("communityId") Long communityId) { |
| | | return userService.getGridsMemberList(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 根据用户id查询用户openid |
| | | * @param userId 用户id |
| | | * @return openid |
| | | */ |
| | | @GetMapping("getUserOpenId") |
| | | public R getUserOpenId(@RequestParam("userId")Long userId) { |
| | | return userService.getUserOpenId(userId); |
| | | } |
| | | |
| | | /** |
| | | * 查询社区后台工作人员列表 |
| | | * @param communityId 社区id |
| | | * @return 社区后台工作人员列表 |
| | | */ |
| | | @GetMapping("getUserListByCommunityId") |
| | | public R getUserListByCommunityId(@RequestParam("communityId")Long communityId) { |
| | | return userService.getUserListByCommunityId(communityId); |
| | | } |
| | | |
| | | } |