1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

导出系统数据初步完成(可以输出到控制台)

This commit is contained in:
2022-04-18 23:08:08 +08:00
parent 883a245058
commit 93c499cb6e
3 changed files with 288 additions and 0 deletions

View File

@@ -82,8 +82,16 @@ public interface BookDOMapper {
/**
* 通过用户id获取用户收藏书籍列表
*
* @param userId
* @return
*/
BookDO[] selectFavoritesListByUserId(Integer userId);
/**
* 查询所有书籍
*
* @return
*/
BookDO[] selectAll();
}