游戏列表新增gameMode字段
This commit is contained in:
parent
48f21a86b3
commit
fcbed65ae5
@ -49,6 +49,11 @@ public class SysGameListConfigParamCmd extends CommonCommand {
|
|||||||
*/
|
*/
|
||||||
private String gameId;
|
private String gameId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 游戏分类
|
* 游戏分类
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -49,6 +49,11 @@ public class GameMatchModelConfigDTO extends DTO {
|
|||||||
*/
|
*/
|
||||||
private String gameId;
|
private String gameId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 游戏分类
|
* 游戏分类
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -56,6 +56,11 @@ public class SysGameListConfigDTO extends DTO {
|
|||||||
*/
|
*/
|
||||||
private String gameId;
|
private String gameId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 游戏分类
|
* 游戏分类
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -103,6 +103,11 @@ public class SysGameListConfigCO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String regions;
|
private String regions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 区域.
|
* 区域.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -88,6 +88,13 @@ public class GameListConfigCO extends ClientObject {
|
|||||||
*/
|
*/
|
||||||
private String regions;
|
private String regions;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否弹幕游戏
|
* 是否弹幕游戏
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -117,5 +117,11 @@ public class GameListConfig extends TimestampBaseEntity {
|
|||||||
@TableField("regions")
|
@TableField("regions")
|
||||||
private String regions;
|
private String regions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 游戏模式 CHAT_ROOM:语聊房
|
||||||
|
*/
|
||||||
|
@TableField("game_mode")
|
||||||
|
private String gameMode;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user