From 02c885c7ae66d23625e98df3eb63a21bd5f8bc90 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 29 May 2023 15:31:54 +0800
Subject: [PATCH] twoCoin项目修改

---
 src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java b/src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
index 471a375..c98fbc4 100644
--- a/src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
+++ b/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)

--
Gitblit v1.9.1