From 586c51955ed277b35943801c20851d00b8936f48 Mon Sep 17 00:00:00 2001 From: yuliang_guo Date: Sat, 31 Jan 2026 18:38:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E5=8F=82=E6=95=B0page=5Fsize=E4=B8=8A=E9=99=90=E5=88=B0500?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 任务中心需要加载全部用户列表,将限制从100提升到500 --- backend/app/schemas/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/schemas/base.py b/backend/app/schemas/base.py index 05abea7..2b9324f 100644 --- a/backend/app/schemas/base.py +++ b/backend/app/schemas/base.py @@ -42,7 +42,7 @@ class PaginationParams(BaseModel): """分页参数""" page: int = Field(default=1, ge=1, description="页码") - page_size: int = Field(default=20, ge=1, le=100, description="每页数量") + page_size: int = Field(default=20, ge=1, le=500, description="每页数量") @property def offset(self) -> int: