| | |
| | | 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);
|
| | | }
|
| | |
|
| | | }
|