| | |
| | | @ApiOperation(value="提交提币申请", notes="提交提币申请")
|
| | | @PostMapping(value="/memberSubmitCoinApply")
|
| | | public Result memberSubmitCoinApply(@RequestBody @Valid MemberSubmitCoinApplyDto memberSubmitCoinApplyDto) {
|
| | | return Result.fail("暂未开放提币");
|
| | | // return memberService.memberSubmitCoinApply(memberSubmitCoinApplyDto);
|
| | | // return Result.fail("暂未开放提币");
|
| | | return memberService.memberSubmitCoinApply(memberSubmitCoinApplyDto);
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | public Result memberAddCoinAddressIn(@RequestBody @Valid MemberAddCoinAddressInDto memberAddCoinAddressDto) {
|
| | | return memberService.memberAddCoinAddressIn(memberAddCoinAddressDto);
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * 提币申请--内转
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="提交提币申请--内转", notes="提交提币申请--内转")
|
| | | @PostMapping(value="/memberSubmitCoinApplyIn")
|
| | | public Result memberSubmitCoinApplyIn(@RequestBody @Valid MemberSubmitCoinApplyInDto memberSubmitCoinApplyInDto) {
|
| | | return memberService.memberSubmitCoinApplyIn(memberSubmitCoinApplyInDto);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 删除内转提币地址
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="删除内转提币地址", notes="删除内转提币地址")
|
| | | @PostMapping(value="/memberDelCoinAddressIn")
|
| | | public Result memberDelCoinAddressIn(@RequestBody @Valid MemberDelCoinAddressDto memberDelCoinAddressDto) {
|
| | | return memberService.memberDelCoinAddressIn(memberDelCoinAddressDto);
|
| | | }
|
| | |
|
| | |
|
| | | }
|