| | |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.convenient.ConvenientMerchantDTO; |
| | | import com.panzhihua.common.model.dtos.community.convenient.DisableOrEnableConvenientMerchantDTO; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import com.panzhihua.common.model.dtos.PageDTO; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 重置密码 |
| | | * |
| | | * @param userId |
| | | * 新密码 |
| | | * @return 修改结果 |
| | | */ |
| | | @GetMapping("resetPassword") |
| | | public R resetPassword(@RequestParam("userId") Long userId) { |
| | | return userService.resetPassword(userId); |
| | | } |
| | | |
| | | /** |
| | | * 批量重置密码 |
| | | * |
| | | * @param userId |
| | | * 新密码 |
| | | * @return 修改结果 |
| | | */ |
| | | @GetMapping("resetPasswordPatch") |
| | | public R resetPasswordPatch(@RequestParam("userIds") Long[] userId) { |
| | | return userService.resetPasswordPatch(userId); |
| | | } |
| | | |
| | | /** |
| | | * 某社区后台人员查询 |
| | | * |
| | | * @param param |
| | |
| | | * @return 标签集合 |
| | | */ |
| | | @PostMapping("listtag/getTag") |
| | | public R listTags(@RequestParam("communityId") Long communityId) { |
| | | return userService.listTags(communityId); |
| | | public R listTags() { |
| | | return userService.listTags(); |
| | | } |
| | | |
| | | /** |
| | |
| | | @PostMapping("putuserbackstage") |
| | | R putUserBackstage(@RequestBody AdministratorsUserVO administratorsUserVO) { |
| | | return userService.putUserBackstage(administratorsUserVO); |
| | | } |
| | | |
| | | /** |
| | | * 新增社区后台物业,社会组织,业主委员会账户 |
| | | * |
| | | * @param administratorsUserVO |
| | | * 账户信息 |
| | | * @return 新增结果 |
| | | */ |
| | | @PostMapping("adduserbackstageproperty") |
| | | public R adduserbackstageproperty(@RequestBody AdministratorsUserVO administratorsUserVO) { |
| | | |
| | | return userService.addUserBackstageProperty(administratorsUserVO); |
| | | } |
| | | |
| | | /** |
| | |
| | | return userService.getUserListByCommunityId(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 检查当前用户是否是社区工作人员 |
| | | * @param phone |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("checkIsTeam") |
| | | public R checkCurrentUserIsTeam(String phone, Long communityId) { |
| | | return userService.checkCurrentUserIsTeam(phone, communityId); |
| | | } |
| | | |
| | | /** |
| | | * 便民服务新增商家账号 |
| | | * @param convenientMerchantDTO |
| | | * @return 商家用户id |
| | | */ |
| | | @PostMapping("insertMerchantAccount") |
| | | public R addConvenientMerchantUser(@RequestBody ConvenientMerchantDTO convenientMerchantDTO) { |
| | | return userService.addConvenientMerchantUser(convenientMerchantDTO); |
| | | } |
| | | |
| | | /** |
| | | * 修改便民服务商家绑定账号 |
| | | * @param userId 用户id |
| | | * @param account 修改账户 |
| | | * @return 修改结果 |
| | | */ |
| | | @PutMapping("putMerchantUserAccount") |
| | | public R putUserAccount(@RequestParam("userId") Long userId, @RequestParam("account") String account) { |
| | | return userService.putUserAccount(userId, account); |
| | | } |
| | | |
| | | /** |
| | | * 禁用/启用便民服务商家用户 |
| | | * @param disableOrEnableConvenientMerchantDTO |
| | | * @return |
| | | */ |
| | | @PutMapping("disableOrEnableMerchantUsers") |
| | | public R disableOrEnableMerchantUsers(@RequestBody DisableOrEnableConvenientMerchantDTO disableOrEnableConvenientMerchantDTO) { |
| | | return userService.disableOrEnableMerchantUsers(disableOrEnableConvenientMerchantDTO); |
| | | } |
| | | } |