This commit is contained in:
FongMi 2023-01-10 15:46:46 +08:00
parent 2b84a58d0b
commit 93c159f62e
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;
}