From 589a60e79c24aac2fac5a7e00c784d8e4731e036 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 01 Mar 2021 12:50:13 +0800 Subject: [PATCH] 20210301 平仓时间时间戳 --- src/main/java/com/xcong/excoin/modules/documentary/dao/FollowTraderInfoDao.java | 6 +++++- 1 files changed, 5 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 6daeec0..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,8 +2,9 @@ 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> { @@ -11,4 +12,7 @@ FollowTraderInfoEntity selectTraderInfoByMemberId(@Param("memberId") Long memberId); + FollowTraderInfoEntity selectTraderInfoByOrderId(@Param("orderId") Long orderId); + + List<FollowTraderInfoEntity> selectAllTraderInfo(); } -- Gitblit v1.9.1