This commit is contained in:
2023-09-21 21:59:43 +08:00
parent c4cc7fc129
commit 7eb00e81c7

View File

@@ -204,7 +204,7 @@ public class BookController {
for (UserEbookBuyEntity b :bookids){
bids.add(b.getBookId());
}
Integer start = (page-1)*limit;
int start = (page-1)*limit;
QueryWrapper<BookEntity> wrapper = new QueryWrapper<>();
wrapper.eq("t.can_listen",1);
wrapper.notIn("t1.Book_id",bids);