xiaoyong931011
2020-06-18 22a1ada1fefc901e391279e01a251aa3c471e96a
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
package com.xcong.excoin.modules.member.mapper;
 
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.MemberEntity;
import com.xcong.excoin.modules.trademanage.vo.MemberAccountInfoVo;
 
import org.apache.ibatis.annotations.Param;
 
/**
 * @author wzy
 * @date 2020-06-10
 **/
public interface MemberMapper extends BaseMapper<MemberEntity> {
 
    IPage<MemberEntity> selectMemberListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoListInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectAgentForAccount(long memberId);
    
    String selectTradeSetting();
    
}