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();
|
|
}
|