From dad0b1cd6cd39d2525f23b1b33df19932fc4cddb Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 29 Jun 2026 11:28:27 +0800
Subject: [PATCH] 止损追单逻辑(多仓/空仓对称): 触发 → 查询 → 计算 → 下单 清理:取消相邻网格旧挂单 + 取消最远止盈单 一句话总结:每次止损触发补回 quantity*2 张,但总持仓不超 maxPositionSize,也不再累加放大。

---
 src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 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..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;
@@ -36,6 +37,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 +157,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);
 	}
 	
 	/**

--
Gitblit v1.9.1