From 3ca949646fead4b3de0656f6ad57c49f0728d629 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 11 Dec 2025 17:09:30 +0800
Subject: [PATCH] feat(coin): 移除EOS币种支持
---
src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
index 79a96df..eca6dc4 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
@@ -1,5 +1,6 @@
package com.xcong.excoin.modules.documentary.dao;
+import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
@@ -32,5 +33,14 @@
@Param("memberId")Long memberId);
FollowFollowerProfitEntity selectDocumentaryOrderSetInfoBymemberIdAndTradeId(@Param("memberId")Long memberId, @Param("traderId")Long traderId);
+
+ IPage<FollowFollowerProfitEntity> selectTradeFollowerProfitEntitys(Page<FollowFollowerProfitEntity> page,
+ @Param("memberId")Long memberId);
+
+ int updateFollowerProfitByTradeMemberId(@Param("principal") BigDecimal principal, @Param("profit") BigDecimal profit, @Param("tradeMemberId") Long tradeMemberId, @Param("memberId") Long memberId);
+
+ int selectFollowerCntByTradeMemberId(@Param("tradeMemberId") Long tradeMemberId);
+
+ BigDecimal selectAllFollowerProfit(@Param("tradeMemberId") Long tradeMemberId);
}
--
Gitblit v1.9.1