| 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<MemberCoinWithdrawEntity> {  | 
|   | 
|     IPage<MemberCoinWithdrawVo> findmemberWithdrawCoinListInPage(Page<MemberCoinWithdrawEntity> page,  | 
|             @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);  | 
|   | 
|     String selectTBByMemberId(@Param("memberId")String memberId);  | 
|   | 
|     IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinAloneInPage(Page<MemberCoinWithdrawEntity> page,  | 
|             @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);  | 
|   | 
|     IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinTestListInPage(Page<MemberCoinWithdrawEntity> page,  | 
|             @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);  | 
|   | 
| }  |