| | |
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberBindPhoneDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberDelPaymethodDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberForgetPwdDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberPaymethodDto;
|
| | |
| | | return memberService.memberPaymethodDetailList();
|
| | | }
|
| | |
|
| | | /**
|
| | | * 绑定手机号
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="绑定手机号", notes="绑定手机号")
|
| | | @PostMapping(value="/memberBindPhone")
|
| | | public Result memberBindPhone(@RequestBody @Valid MemberBindPhoneDto memberBindPhoneDto) {
|
| | | return memberService.memberBindPhone(memberBindPhoneDto);
|
| | | }
|
| | | |
| | |
|
| | |
|
| | |
|