From 41348c4a2a3bc3ebc658386f42c70d70fbd505c5 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 11 May 2021 11:02:26 +0800 Subject: [PATCH] add basic data udpate --- src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerSettingDao.java | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 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 b408308..48f8626 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 @@ -1,7 +1,22 @@ package com.xcong.excoin.modules.documentary.dao; +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 { +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); + + List<FollowFollowerSettingEntity> selectDocumentaryOrderSetInfosBymemberId(@Param("memberId")Long memberId); } -- Gitblit v1.9.1