We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d44a549 commit b60c07eCopy full SHA for b60c07e
backend/common/pagination.py
@@ -24,7 +24,7 @@ class _CustomPageParams(BaseModel, AbstractParams):
24
"""自定义分页参数"""
25
26
page: int = Query(1, ge=1, description='页码')
27
- size: int = Query(20, gt=0, le=100, description='每页数量')
+ size: int = Query(20, gt=0, le=200, description='每页数量')
28
29
def to_raw_params(self) -> RawParams:
30
return RawParams(
0 commit comments