xiaoyong931011
2021-01-21 c3d290fcd993ea844ffecb8bdd7ce2105fec3d0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
    
    IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinOneInPage(Page<MemberCoinWithdrawEntity> page,
            @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);
 
    IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinTwoInPage(Page<MemberCoinWithdrawEntity> page,
            @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);
 
    IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinTeeInPage(Page<MemberCoinWithdrawEntity> page,
            @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);
 
    IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinAllOneInPage(Page<MemberCoinWithdrawEntity> page,
            @Param("record")MemberCoinWithdrawEntity memberCoinWithdrawEntity);
 
}