From 32304b74df073666e566b4bbe5adbba279f91462 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 7 Dec 2025 18:13:55 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix=EF=BC=9A=E6=9C=80=E5=A4=A7=E5=88=86?= =?UTF-8?q?=E9=A1=B5=E4=BB=8E=20100->=20200=EF=BC=8C=E6=9B=B4=E5=A5=BD?= =?UTF-8?q?=E7=9A=84=E9=80=82=E5=BA=94=20vben=EF=BC=8C=E5=AF=B9=E5=BA=94?= =?UTF-8?q?=20issue=EF=BC=9Ahttps://github.com/yudaocode/yudao-ui-admin-vb?= =?UTF-8?q?en/issues/176?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/iocoder/yudao/framework/common/pojo/PageParam.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/pojo/PageParam.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/pojo/PageParam.java index 65356e31d7..114f15e770 100644 --- a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/pojo/PageParam.java +++ b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/pojo/PageParam.java @@ -27,7 +27,7 @@ public class PageParam implements Serializable { @Min(value = 1, message = "页码最小值为 1") private Integer pageNo = PAGE_NO; - @Schema(description = "每页条数,最大值为 100", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") + @Schema(description = "每页条数,最大值为 200", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") @NotNull(message = "每页条数不能为空") @Min(value = 1, message = "每页条数最小值为 1") @Max(value = 200, message = "每页条数最大值为 200") From e45e2ae29f9f9df55281c1fd541d7f54a670e0a8 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 7 Dec 2025 18:19:33 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix=EF=BC=9A=E3=80=90system=E3=80=91"system?= =?UTF-8?q?=5Fsocial=5Fclient"=20=E7=9A=84=E5=8D=95=E6=B5=8B=E7=BC=BA?= =?UTF-8?q?=E5=B0=91=20public=5Fkey=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yudao-module-system/src/test/resources/sql/create_tables.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/yudao-module-system/src/test/resources/sql/create_tables.sql b/yudao-module-system/src/test/resources/sql/create_tables.sql index 124b307612..9970065ae0 100644 --- a/yudao-module-system/src/test/resources/sql/create_tables.sql +++ b/yudao-module-system/src/test/resources/sql/create_tables.sql @@ -339,6 +339,7 @@ CREATE TABLE IF NOT EXISTS "system_social_client" ( "user_type" int NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, + "public_key" varchar(2048) NOT NULL, "agent_id" varchar(255) NOT NULL, "status" int NOT NULL, "creator" varchar(64) DEFAULT '',