spring-boot-realworld-examp.../src/main/java/io/spring/application/profile/UserRelationshipQueryServic...
2017-08-15 10:47:18 +08:00

12 lines
355 B
Java

package io.spring.application.profile;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@Component
@Mapper
public interface UserRelationshipQueryService {
boolean isUserFollowing(@Param("userId") String userId, @Param("anotherUserId") String anotherUserId);
}