From 9d3ab9b4ccd1bd6159af8743ee8df6f70a43b1d2 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 01 Dec 2021 10:50:34 +0800 Subject: [PATCH] 20211201 fish --- src/main/java/com/xcong/excoin/modules/fish/mapper/CannonExchangeRatioMapper.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/fish/mapper/CannonExchangeRatioMapper.java b/src/main/java/com/xcong/excoin/modules/fish/mapper/CannonExchangeRatioMapper.java index 66e2ad9..74549a5 100644 --- a/src/main/java/com/xcong/excoin/modules/fish/mapper/CannonExchangeRatioMapper.java +++ b/src/main/java/com/xcong/excoin/modules/fish/mapper/CannonExchangeRatioMapper.java @@ -3,10 +3,12 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.xcong.excoin.modules.fish.dto.MemberDto; import com.xcong.excoin.modules.fish.entity.CannonAccountMoneyChange; import com.xcong.excoin.modules.fish.entity.CannonExchangeRatio; import com.xcong.excoin.modules.fish.entity.CannonSetting; import com.xcong.excoin.modules.fish.vo.CannonAccountMoneyChangeVo; +import com.xcong.excoin.modules.fish.vo.MemberVo; import org.apache.ibatis.annotations.Param; public interface CannonExchangeRatioMapper extends BaseMapper<CannonExchangeRatio> { @@ -16,4 +18,6 @@ IPage<CannonSetting> findCannonSettingInPage(Page<CannonSetting> page, @Param("record")CannonSetting cannonSetting); IPage<CannonAccountMoneyChangeVo> findCannonAccountMoneyChangeInPage(Page<CannonAccountMoneyChangeVo> page, @Param("record")CannonAccountMoneyChange cannonAccountMoneyChange); + + IPage<MemberVo> findMemberVoInPage(Page<MemberVo> page, @Param("record")MemberDto memberDto); } -- Gitblit v1.9.1