xiaoyong931011
2020-07-11 264edffc6eae1fa5cccbf9992d9502cfa699f759
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
 
}