From 76d423de0eaadf5bcc286a4994c905091f10952a Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 21 Nov 2025 11:26:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E6=88=BF=E9=97=B4=E4=BC=9A?= =?UTF-8?q?=E8=B4=B9=E9=A2=9D=E5=BA=A6=E8=B0=83=E6=95=B4=E4=B8=BA10000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/other/app/command/room/UpdateRoomSettingCmdExe.java | 2 +- .../red/circle/other/app/dto/cmd/room/UpdateRoomSettingCmd.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/room/UpdateRoomSettingCmdExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/room/UpdateRoomSettingCmdExe.java index 5cb456f6..5b801dc8 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/room/UpdateRoomSettingCmdExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/room/UpdateRoomSettingCmdExe.java @@ -49,7 +49,7 @@ public class UpdateRoomSettingCmdExe { if (Objects.nonNull(cmd.getJoinGolds()) && !cmd.checkJoinGoldsIsPass()) { ResponseAssert.failure(ResponseErrorCode.REQUEST_PARAMETER_ERROR, - "joinGolds error, range 1~5000"); + "joinGolds error, range 1~10000"); } roomProfileManagerService.updateSelectiveSetting(cmd.getRoomId(), diff --git a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/cmd/room/UpdateRoomSettingCmd.java b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/cmd/room/UpdateRoomSettingCmd.java index a2fedc97..dbe41bbd 100644 --- a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/cmd/room/UpdateRoomSettingCmd.java +++ b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/cmd/room/UpdateRoomSettingCmd.java @@ -85,6 +85,6 @@ public class UpdateRoomSettingCmd extends AppExtCommand { public boolean checkJoinGoldsIsPass() { - return Objects.nonNull(joinGolds) && joinGolds >= 0 && joinGolds <= 5000; + return Objects.nonNull(joinGolds) && joinGolds >= 0 && joinGolds <= 10000; } }