From 25ab08f868ec8fec561d94ec81da5df5b3391d4c Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 10 Dec 2025 17:57:39 +0800
Subject: [PATCH] refactor(symbols): 注释掉symbol行情数据计算逻辑
---
src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java
index 2e452cd..d49b8a5 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java
@@ -2,11 +2,17 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
+import org.apache.ibatis.annotations.Param;
-import io.lettuce.core.dynamic.annotation.Param;
+import java.util.List;
public interface FollowTraderInfoDao extends BaseMapper<FollowTraderInfoEntity> {
FollowTraderInfoEntity selectFollowTraderInfoEntityBytreaderId(@Param("traderId")Long traderId);
+ FollowTraderInfoEntity selectTraderInfoByMemberId(@Param("memberId") Long memberId);
+
+ FollowTraderInfoEntity selectTraderInfoByOrderId(@Param("orderId") Long orderId);
+
+ List<FollowTraderInfoEntity> selectAllTraderInfo();
}
--
Gitblit v1.9.1