Merge pull request #8 from LQYBill/fix/newMabangJobMaxRows

fix: maxRows set to 1000
pull/6221/head
Qiuyi LI 2023-07-06 17:09:33 +02:00 committed by GitHub
commit 2d29f28fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ public class OrderListRequestBody implements RequestBody {
private LocalDateTime endDate;
// 1.Normal 2.Abnormal 3.All
private final static String CAN_SEND = "3";
private final String maxRows = "1000";
private String cursor = "";
private Integer page = 1;
private boolean hasNext = true;
@ -38,6 +39,7 @@ public class OrderListRequestBody implements RequestBody {
}
putNonNull(json, "canSend", CAN_SEND);
putNonNull(json, "cursor", cursor);
putNonNull(json, "maxRows", maxRows);
return json;
}

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-parent</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<packaging>pom</packaging>
<name>WIA APP ${project.version} </name>