From 29310bedd35effb09afa54617a0cfd10a079262e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 23 Feb 2022 16:02:46 +0800
Subject: [PATCH] 20222223

---
 src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java |   52 ++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 46 insertions(+), 6 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 a30b9cc..0cfeb74 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,8 @@
 import javax.annotation.Resource;
 import javax.validation.Valid;
 
+import com.xcong.excoin.modules.coin.parameter.dto.*;
+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;
 import com.xcong.excoin.modules.coin.parameter.vo.MemberWalletAgentInfoVo;
@@ -20,9 +22,6 @@
 import org.springframework.web.bind.annotation.RestController;
 
 import com.xcong.excoin.common.response.Result;
-import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto;
-import com.xcong.excoin.modules.coin.parameter.dto.TransferOfBalanceDto;
-import com.xcong.excoin.modules.coin.parameter.dto.TransferOfBalanceFromAgentDto;
 import com.xcong.excoin.modules.coin.service.CoinService;
 
 import lombok.extern.slf4j.Slf4j;
@@ -36,6 +35,16 @@
 	@Resource
 	private CoinService coinService;
 	
+	/**
+	 *  获取我的总资产
+	 * @return
+	 */
+	@ApiOperation(value = "获取我的总资产", notes = "获取我的总资产")
+	@ApiResponses({@ApiResponse( code = 200, message = "success", response = AllWalletCoinVo.class)})
+	@GetMapping(value = "/getAllWalletCoin")
+	public Result getAllWalletCoin() {
+		return coinService.getAllWalletCoin();
+	}
 	/**
 	 *  获取我的币币资产信息
 	 * @return
@@ -146,9 +155,9 @@
 	 */
 	@ApiOperation(value="获取代理资产佣金入账", notes="获取代理资产佣金入账")
 	@ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberAgentIntoInfoVo.class)})
-	@GetMapping(value="/getWalletAgentIntoRecords")
-	public Result  getWalletAgentIntoRecords() {
-		return coinService.getWalletAgentIntoRecords();
+	@PostMapping(value="/getWalletAgentIntoRecords")
+	public Result  getWalletAgentIntoRecords(@RequestBody @Valid RecordsPageDto recordsPageDto) {
+		return coinService.getWalletAgentIntoRecords(recordsPageDto);
 	}
 	
 	/**
@@ -186,6 +195,37 @@
 		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();
+		return coinService.usdtToGusd(balance);
+	}
+
+	/**
+	 * 质押GUSD
+	 */
+	@ApiOperation(value="质押GUSD", notes="质押GUSD")
+	@PostMapping(value="/zhiYaGusd")
+	public Result  zhiYaGusd(@RequestBody @Valid ZhiYaGusdDto zhiYaGusdDto) {
+		BigDecimal balance = zhiYaGusdDto.getBalance();
+		return coinService.zhiYaGusd(balance);
+	}
+
+	/**
+	 * 赎回GUSD
+	 */
+	@ApiOperation(value="赎回GUSD", notes="赎回GUSD")
+	@PostMapping(value="/shuhuiGusd")
+	public Result  shuhuiGusd(@RequestBody @Valid ShuhuiGusdDto shuhuiGusdDto) {
+		BigDecimal balance = shuhuiGusdDto.getBalance();
+		return coinService.shuhuiGusd(balance);
+	}
 	
 
 }

--
Gitblit v1.9.1