| | |
| | | */
|
| | | @ApiOperation(value="代理账户划转到USDT账户", notes="代理账户划转到USDT账户")
|
| | | @PostMapping(value="/agentTransferToWalletCoin")
|
| | | @ApiImplicitParam(name = "token", value = "token", required = true, dataType = "String", paramType = "body")
|
| | | public Result agentTransferToWalletCoin(@RequestBody @Valid TransferOfBalanceDto transferOfBalanceDto) {
|
| | | BigDecimal balance = transferOfBalanceDto.getBalance();
|
| | | Integer transfertype = transferOfBalanceDto.getTransfertype();
|
| | | return coinService.agentTransferToWalletCoin(balance,transfertype);
|
| | | }
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | |
|
| | |
|
| | | }
|