Skip to content

Commit

Permalink
PageInput.PageSize每页大小最大值不再限制
Browse files Browse the repository at this point in the history
  • Loading branch information
zhontai committed May 28, 2024
1 parent bcac02c commit 0c1b1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/ZhonTai.Admin/Core/Dto/PageInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public virtual int PageSize
get
{
if (_pageSize < 1) _pageSize = 1;
if (_pageSize > 1000) _pageSize = 1000;
//if (_pageSize > 1000) _pageSize = 1000;
return _pageSize;
}
set => _pageSize = value;
Expand Down

0 comments on commit 0c1b1b1

Please sign in to comment.