Commit 46753348 by 段启岩

修复博客推荐

parent 9eaf4d0d
......@@ -3,6 +3,7 @@ package cn.meteor.beyondclouds.modules.blog.mapper;
import cn.meteor.beyondclouds.modules.blog.entity.BlogTag;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.Collection;
......@@ -23,5 +24,5 @@ public interface BlogTagMapper extends BaseMapper<BlogTag> {
* @param tagIds
* @return
*/
IPage<String> selectRelatedBlogIds(IPage<?> page, Collection<String> tagIds);
IPage<String> selectRelatedBlogIds(IPage<?> page, @Param("tagIds") Collection<String> tagIds);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment