KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("game_room")
public class GameRoom extends BaseEntity {
 
    private Integer roomType;//房间类型 1-初级房2-土豪房3-尊爵房
    private String password;//房间密码(房间唯一编码,自动生成)
    private Long ownerMemberId;//房主用户表ID
    private String roomOwner;//房主用户表ID
 
    private Integer state;//房间状态0-未开始1-正常2-结束
    public static final Integer STATE_READY = 0;
    public static final Integer STATE_ING = 1;
    public static final Integer STATE_DONE = 2;
 
    private Integer gameTime;//游戏时长
 
 
}