|
@@ -667,10 +667,12 @@ public class OrderBaseLogic {
|
|
|
}
|
|
|
|
|
|
|
|
|
- log.info("打印页数"+pageSize);
|
|
|
+ log.info("打印页大小"+pageSize+"打印页数"+pageNum);
|
|
|
|
|
|
- if (pageSize == null)
|
|
|
+ if (pageSize == null) {
|
|
|
pageSize = 10;
|
|
|
+ pageNum = 1;
|
|
|
+ }
|
|
|
|
|
|
// 创建分页请求
|
|
|
Pageable pageable = PageRequest.of(pageNum-1, pageSize);
|