文档更新

This commit is contained in:
xxy
2020-05-04 09:26:37 +08:00
parent fe8b554ce4
commit a9319041a7
13 changed files with 83 additions and 3540 deletions

View File

@ -22,4 +22,11 @@ public interface FrontBookMapper extends BookMapper {
void addCommentCount(@Param("bookId") Long bookId);
List<Book> queryNetworkPicBooks(@Param("limit") Integer limit,@Param("offset") Integer offset);
/**
* 按评分随机查询小说集合
* @param limit 查询条数
* @return 小说集合
* */
List<Book> selectIdsByScoreAndRandom(@Param("limit") int limit);
}