From fcbed65ae566b31469cd55df732d5fd6453b2747 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 11 Mar 2026 15:15:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=B8=E6=88=8F=E5=88=97=E8=A1=A8=E6=96=B0?= =?UTF-8?q?=E5=A2=9EgameMode=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inner/model/cmd/sys/SysGameListConfigParamCmd.java | 5 +++++ .../other/inner/model/dto/sys/GameMatchModelConfigDTO.java | 5 +++++ .../other/inner/model/dto/sys/SysGameListConfigDTO.java | 5 +++++ .../app/dto/clienobject/sys/SysGameListConfigCO.java | 5 +++++ .../other/app/dto/clientobject/sys/GameListConfigCO.java | 7 +++++++ .../infra/database/rds/entity/sys/GameListConfig.java | 6 ++++++ 6 files changed, 33 insertions(+) diff --git a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/cmd/sys/SysGameListConfigParamCmd.java b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/cmd/sys/SysGameListConfigParamCmd.java index 737540b4..b2608ee0 100644 --- a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/cmd/sys/SysGameListConfigParamCmd.java +++ b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/cmd/sys/SysGameListConfigParamCmd.java @@ -49,6 +49,11 @@ public class SysGameListConfigParamCmd extends CommonCommand { */ private String gameId; + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + private String gameMode; + /** * 游戏分类 */ diff --git a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/GameMatchModelConfigDTO.java b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/GameMatchModelConfigDTO.java index 10d71c84..b47a05d3 100644 --- a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/GameMatchModelConfigDTO.java +++ b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/GameMatchModelConfigDTO.java @@ -49,6 +49,11 @@ public class GameMatchModelConfigDTO extends DTO { */ private String gameId; + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + private String gameMode; + /** * 游戏分类 */ diff --git a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/SysGameListConfigDTO.java b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/SysGameListConfigDTO.java index 3e72442f..de2c6d65 100644 --- a/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/SysGameListConfigDTO.java +++ b/rc-service/rc-inner-api/other-inner/other-inner-model/src/main/java/com/red/circle/other/inner/model/dto/sys/SysGameListConfigDTO.java @@ -56,6 +56,11 @@ public class SysGameListConfigDTO extends DTO { */ private String gameId; + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + private String gameMode; + /** * 游戏分类 */ diff --git a/rc-service/rc-service-console/console-client/src/main/java/com/red/circle/console/app/dto/clienobject/sys/SysGameListConfigCO.java b/rc-service/rc-service-console/console-client/src/main/java/com/red/circle/console/app/dto/clienobject/sys/SysGameListConfigCO.java index 6b3ef02c..094c4723 100644 --- a/rc-service/rc-service-console/console-client/src/main/java/com/red/circle/console/app/dto/clienobject/sys/SysGameListConfigCO.java +++ b/rc-service/rc-service-console/console-client/src/main/java/com/red/circle/console/app/dto/clienobject/sys/SysGameListConfigCO.java @@ -103,6 +103,11 @@ public class SysGameListConfigCO implements Serializable { */ private String regions; + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + private String gameMode; + /** * 区域. */ diff --git a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/sys/GameListConfigCO.java b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/sys/GameListConfigCO.java index 84934d4e..572166df 100644 --- a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/sys/GameListConfigCO.java +++ b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/sys/GameListConfigCO.java @@ -88,6 +88,13 @@ public class GameListConfigCO extends ClientObject { */ private String regions; + + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + private String gameMode; + + /** * 是否弹幕游戏 */ diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/sys/GameListConfig.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/sys/GameListConfig.java index b89b5d9e..9f75cde6 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/sys/GameListConfig.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/sys/GameListConfig.java @@ -117,5 +117,11 @@ public class GameListConfig extends TimestampBaseEntity { @TableField("regions") private String regions; + /** + * 游戏模式 CHAT_ROOM:语聊房 + */ + @TableField("game_mode") + private String gameMode; + }