From 89d397b88a88004e73485a72ffb6e78c9e249b16 Mon Sep 17 00:00:00 2001
From: zainali5120 <512061637@qq.com>
Date: Sat, 20 Feb 2021 17:02:56 +0800
Subject: [PATCH] ERC20同步方式完善
---
src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java | 3 +++
1 files changed, 3 insertions(+), 0 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 cd26af6..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
@@ -4,6 +4,8 @@
import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
import org.apache.ibatis.annotations.Param;
+import java.util.List;
+
public interface FollowTraderInfoDao extends BaseMapper<FollowTraderInfoEntity> {
FollowTraderInfoEntity selectFollowTraderInfoEntityBytreaderId(@Param("traderId")Long traderId);
@@ -12,4 +14,5 @@
FollowTraderInfoEntity selectTraderInfoByOrderId(@Param("orderId") Long orderId);
+ List<FollowTraderInfoEntity> selectAllTraderInfo();
}
--
Gitblit v1.9.1