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