| | |
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressInDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberBindEmailDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberBindPhoneDto;
|
| | |
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberAuthenticationInfoVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberAvivableCoinInfoVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberCoinAddressCountListVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberCoinAddressInListVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberCoinAddressListVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberCoinInfoListVo;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.MemberInfoVo;
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * 获取内转提币地址
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "获取内转提币地址列表", notes = "获取内转提币地址列表")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberCoinAddressInListVo.class)})
|
| | | @GetMapping(value = "/memberCoinAddressInList")
|
| | | public Result memberCoinAddressInList() {
|
| | | return memberService.memberCoinAddressInList();
|
| | | }
|
| | | |
| | | /**
|
| | | * 添加提币地址
|
| | | * @return
|
| | | */
|
| | |
| | | @PostMapping(value = "/memberAddCoinAddress")
|
| | | public Result memberAddCoinAddress(@RequestBody @Valid MemberAddCoinAddressDto memberAddCoinAddressDto) {
|
| | | return memberService.memberAddCoinAddress(memberAddCoinAddressDto);
|
| | | }
|
| | | |
| | | /**
|
| | | * 添加内转提币地址
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "添加内转提币地址", notes = "添加内转提币地址")
|
| | | @PostMapping(value = "/memberAddCoinAddressIn")
|
| | | public Result memberAddCoinAddressIn(@RequestBody @Valid MemberAddCoinAddressInDto memberAddCoinAddressDto) {
|
| | | return memberService.memberAddCoinAddressIn(memberAddCoinAddressDto);
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * 删除内转提币地址
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="删除内转提币地址", notes="删除内转提币地址")
|
| | | @PostMapping(value="/memberDelCoinAddressIn")
|
| | | public Result memberDelCoinAddressIn(@RequestBody @Valid MemberDelCoinAddressDto memberDelCoinAddressDto) {
|
| | | return memberService.memberDelCoinAddressIn(memberDelCoinAddressDto);
|
| | | }
|
| | | |
| | | /**
|
| | | * 获取发送验证码途径
|
| | | * @return
|
| | | */
|