package com.xcong.excoin.modules.member.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.member.entity.MemberCoinWithdrawEntity; import com.xcong.excoin.modules.member.vo.MemberCoinWithdrawVo; public interface MemberCoinWithdrawMapper extends BaseMapper { IPage findmemberWithdrawCoinListInPage(Page page, @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity); String selectTBByMemberId(@Param("memberId")String memberId); IPage findMemberWithdrawCoinAloneInPage(Page page, @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity); IPage findMemberWithdrawCoinTestListInPage(Page page, @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity); }