src/main/java/org/springblade/modules/article/mapper/ArticleMapper.java
@@ -29,4 +29,18 @@ * @return */ List<Article> pageDate(IPage<Article> page, @Param("article") ArticleVo article); List<Article> pageCollectList(IPage<Article> page, @Param("article") ArticleVo article); /** * 查询资讯分页信息(角色权限)附带评论点赞数量 * @param page * @param article 资讯对象 * @return */ List<Article> pageLikes(IPage<Article> page, @Param("article") ArticleVo article); List<Article> pageCollect(IPage<Article> page, @Param("article") ArticleVo article); Boolean upcomment(String ids,String type); }