| | |
| | | return success(true); |
| | | } |
| | | |
| | | @PutMapping("/update-mobile-by-weixin") |
| | | @Operation(summary = "基于微信小程序的授权码,修改用户手机") |
| | | public CommonResult<Boolean> updateUserMobileByWeixin(@RequestBody @Valid AppMemberUserUpdateMobileByWeixinReqVO reqVO) { |
| | | userService.updateUserMobileByWeixin(getLoginUserId(), reqVO); |
| | | return success(true); |
| | | } |
| | | |
| | | @PutMapping("/update-password") |
| | | @Operation(summary = "修改用户密码", description = "用户修改密码时使用") |
| | | public CommonResult<Boolean> updateUserPassword(@RequestBody @Valid AppMemberUserUpdatePasswordReqVO reqVO) { |