修复推流列表大数据量时批量删除的错误,修复推流列表分页查询错误

This commit is contained in:
648540858
2021-12-10 18:38:58 +08:00
parent 20a3cb9e73
commit b6fa459bc3
3 changed files with 17 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ public class StreamPushController {
@RequestParam(required = false)String query,
@RequestParam(required = false)Boolean online ){
PageInfo<StreamPushItem> pushList = streamPushService.getPushList(page - 1, page - 1 + count);
PageInfo<StreamPushItem> pushList = streamPushService.getPushList(page, count);
return pushList;
}