Helius
2020-06-16 51571c5cde2c49613346418e75e3fd8bcae3e13a
src/main/java/com/xcong/excoin/modules/agent/mapper/AgentFriendRelationMapper.java
@@ -3,9 +3,14 @@
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);
}