From f45eff2b375d45668bb2e9253b4faec2f04d39b9 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 03 Mar 2021 17:21:03 +0800 Subject: [PATCH] 20210303 消息提醒更新 --- src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java index 9c14875..ffb1b68 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java @@ -2,9 +2,19 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.excoin.modules.documentary.entity.FollowFollowerSettingEntity; +import org.apache.ibatis.annotations.Param; + + +import java.util.List; /** * @author helius */ public interface FollowFollowerSettingDao extends BaseMapper<FollowFollowerSettingEntity> { + + FollowFollowerSettingEntity selectDocumentaryOrderSetInfoBymemberId(@Param("memberId")Long memberId); + + FollowFollowerSettingEntity selectOneBymemberIdAndTradeId(@Param("memberId")Long memberId, @Param("traderId")Long traderId); + + List<FollowFollowerSettingEntity> selectAllFollowerSettingByTradeMemberId(@Param("memberId") Long memberId); } -- Gitblit v1.9.1