| | |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "互转ANDAO", notes = "互转ANDAO") |
| | | @PostMapping(value = "/roundCoin") |
| | | public FebsResponse roundCoin(@RequestBody RoundCoinDto roundCoinDto) { |
| | | dappWalletService.roundCoin(roundCoinDto); |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "互转AUSDT", notes = "互转AUSDT") |
| | | @PostMapping(value = "/roundCoinAusdt") |
| | | public FebsResponse roundCoinAusdt(@RequestBody RoundCoinDto roundCoinDto) { |
| | | dappWalletService.roundCoinAusdt(roundCoinDto); |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "记录列表", notes = "记录列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = DappFundFlowVo.class) |