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; } }