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