package com.xcong.excoin.modules.documentary.dao; 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.FollowTraderProfitInfoEntity; import com.xcong.excoin.modules.documentary.vo.FollowTraderProfitInfoVo; import com.xcong.excoin.modules.documentary.vo.HistoryOrderRecordsVo; public interface FollowTraderProfitInfoDao extends BaseMapper { IPage selectFollowTraderProfitInfoEntity(Page page, @Param("record")FollowTraderProfitInfoEntity followTraderProfitInfoEntity); IPage selectHistoryOrderRecords(Page page, @Param("memberId")Long memberId); FollowTraderProfitInfoVo selectOneByMemberId(@Param("memberId")long memberId); }