From 7ae23e17d8e90dc634f3f86e2eee209cbacaace3 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 30 Nov 2020 17:15:53 +0800
Subject: [PATCH] 20201130

---
 src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 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 c71d9d3..64df9f2 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.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;
@@ -37,6 +38,16 @@
 	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
 	 */

--
Gitblit v1.9.1