wzy
2020-10-16 1d8945ea7ba27eb6bd8bec14579586e1c88b756e
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);
}