From 7e3ef24a24df87f71beedefeec3febb1ce13b094 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 18 May 2021 18:56:59 +0800 Subject: [PATCH] 20210518 --- src/main/java/com/xcong/excoin/modules/documentary/mapper/FollowFollowerProfitMapper.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/mapper/FollowFollowerProfitMapper.java b/src/main/java/com/xcong/excoin/modules/documentary/mapper/FollowFollowerProfitMapper.java index 99e771f..a100de3 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/mapper/FollowFollowerProfitMapper.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/mapper/FollowFollowerProfitMapper.java @@ -1,8 +1,17 @@ package com.xcong.excoin.modules.documentary.mapper; +import org.apache.ibatis.annotations.Param; + 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.documentary.entity.FollowFollowerProfitEntity; +import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity; +import com.xcong.excoin.modules.documentary.vo.SeeFollowerInfoVo; public interface FollowFollowerProfitMapper extends BaseMapper<FollowFollowerProfitEntity> { + IPage<SeeFollowerInfoVo> findFollowFollowerProfitInfo(Page<SeeFollowerInfoVo> page, + @Param("record") FollowTraderInfoEntity followTraderInfo); + } -- Gitblit v1.9.1