This commit is contained in:
FongMi 2023-01-10 15:46:46 +08:00
parent 65832f925d
commit 2a9f0335f3
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class Result {
this.page = page > 0 ? page : Integer.MAX_VALUE;
this.limit = limit > 0 ? limit : Integer.MAX_VALUE;
this.total = total > 0 ? total : Integer.MAX_VALUE;
this.pagecount = count > 0 ? page : Integer.MAX_VALUE;
this.pagecount = count > 0 ? count : Integer.MAX_VALUE;
return this;
}