From 6258b45b69d75325b7d6df7edf2761c22a87369b Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 21 Feb 2022 10:24:29 +0800
Subject: [PATCH] 20222221

---
 src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java b/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
index 19e113a..a1d9f64 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
+++ b/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
@@ -5,6 +5,7 @@
 import javax.annotation.Resource;
 import javax.validation.Valid;
 
+import com.xcong.excoin.modules.coin.parameter.dto.UsdtToGusdDto;
 import com.xcong.excoin.modules.coin.parameter.vo.AllWalletCoinVo;
 import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo;
 import com.xcong.excoin.modules.coin.parameter.vo.MemberAgentIntoInfoVo;
@@ -41,7 +42,7 @@
 	 *  获取我的总资产
 	 * @return
 	 */
-	@ApiOperation(value = "获取我的币币账户信息", notes = "获取我的币币账户信息")
+	@ApiOperation(value = "获取我的总资产", notes = "获取我的总资产")
 	@ApiResponses({@ApiResponse( code = 200, message = "success", response = AllWalletCoinVo.class)})
 	@GetMapping(value = "/getAllWalletCoin")
 	public Result getAllWalletCoin() {
@@ -197,6 +198,18 @@
 		Integer transfertype = transferOfBalanceFromAgentDto.getTransfertype();
 		return coinService.agentTransferToWalletCoin(balance,transfertype);
 	}
+
+	/**
+	 * USDT兌換成GUSD
+	 * @return
+	 */
+	@ApiOperation(value="USDT兌換成GUSD", notes="USDT兌換成GUSD")
+	@PostMapping(value="/usdtToGusd")
+	public Result  usdtToGusd(@RequestBody @Valid UsdtToGusdDto usdtToGusdDto) {
+		BigDecimal balance = usdtToGusdDto.getBalance();
+		Integer transfertype = usdtToGusdDto.getTransfertype();
+		return coinService.usdtToGusd(balance,transfertype);
+	}
 	
 
 }

--
Gitblit v1.9.1