KKSU
2024-06-24 96a6e0d312a35f4e9fc16d0c6c757768b9bfeb6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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-玩家
    public static final Integer OWNER_TRUE = 1;
    public static final Integer OWNER_FALSE = 2;
 
 
}