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

14 lines
415 B
Java

package io.spring.application.article;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@Mapper
@Component
public interface ArticleFavoritesQueryService {
boolean isUserFavorite(@Param("userId") String userId, @Param("articleId") String articleId);
int articleFavoriteCount(@Param("articleId") String articleId);
}