| | |
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberInfoVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberPaymethodDetailListVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberPaymethodDetailVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberSendCodeWayVo;
|
| | | import com.xcong.excoin.modules.member.service.MemberService;
|
| | |
|
| | | import io.swagger.annotations.Api;
|
| | |
| | | public Result memberAddCoinAddress(@RequestBody @Valid MemberAddCoinAddressDto memberAddCoinAddressDto) {
|
| | | return memberService.memberAddCoinAddress(memberAddCoinAddressDto);
|
| | | }
|
| | | |
| | | /**
|
| | | * 获取发送验证码途径
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "获取发送验证码途径", notes = "获取发送验证码途径")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberSendCodeWayVo.class)})
|
| | | @GetMapping(value = "/memberSendCodeWay")
|
| | | public Result memberSendCodeWay() {
|
| | | return memberService.memberSendCodeWay();
|
| | | }
|
| | |
|
| | |
|
| | |
|