Helius
2020-06-15 0169b3c71efc064577a45c5058d458c9ef1cb94a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.agent.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.agent.entity.AgentFriendRelationEntity;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author helius
 */
public interface AgentFriendRelationMapper extends BaseMapper<AgentFriendRelationEntity> {
 
    AgentFriendRelationEntity selectAgentFriendRelationByUserId(@Param("userId") Long userId);
 
    int updateByUserId(@Param("record") AgentFriendRelationEntity agentFriendRelationEntity);
}