KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_child")
public class GameRoomChild extends BaseEntity {
 
    private Long roomId;//
    private Long memberId;//用户表ID
    private Integer ownerState;//1-房主 2-玩家
    private Integer state;//1-进入 2-退出
    public static final Integer OWNER_TRUE = 1;
    public static final Integer OWNER_FALSE = 2;
 
 
}