fix: 查询下一批保存到 ES 中的小说列表

This commit is contained in:
xiongxiaoyang 2023-04-02 01:53:17 +08:00
parent 0360b8f95d
commit a0f5bb8449

View File

@ -37,7 +37,7 @@ public class InnerBookController {
*/
@Operation(summary = "查询下一批保存到 ES 中的小说列表")
@PostMapping("listNextEsBooks")
RestResp<List<BookEsRespDto>> listNextEsBooks(@Parameter(description = "已查询的最大小说ID") Long maxBookId) {
RestResp<List<BookEsRespDto>> listNextEsBooks(@Parameter(description = "已查询的最大小说ID") @RequestBody Long maxBookId) {
return bookService.listNextEsBooks(maxBookId);
}