xiaoyong931011
2021-01-21 c3d290fcd993ea844ffecb8bdd7ce2105fec3d0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.xcong.excoin.modules.member.mapper;
 
import java.util.List;
 
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.AgentFriendRelationEntity;
 
public interface AgentFriendRelationMapper  extends BaseMapper<AgentFriendRelationEntity> {
 
    IPage<AgentFriendRelationEntity> findAgentFriendRelationListInPage(Page<AgentFriendRelationEntity> page,
            @Param("record")AgentFriendRelationEntity agentFriendRelationEntity);
 
    List<AgentFriendRelationEntity> selectAgentFriendRelationByMap(@Param("inviteId")String inviteId);
 
}