xiaoyong931011
2023-05-29 02c885c7ae66d23625e98df3eb63a21bd5f8bc90
src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
@@ -114,6 +114,20 @@
        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)