Skip to content

Commit b93ff19

Browse files
authored
Update the number of pagination le (#565)
1 parent 4c007cb commit b93ff19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/common/pagination.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class _CustomPageParams(BaseModel, AbstractParams):
2424
"""自定义分页参数"""
2525

2626
page: int = Query(1, ge=1, description='页码')
27-
size: int = Query(20, gt=0, le=100, description='每页数量')
27+
size: int = Query(20, gt=0, le=200, description='每页数量')
2828

2929
def to_raw_params(self) -> RawParams:
3030
return RawParams(

0 commit comments

Comments
 (0)