package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@TableName("game_game_child")
|
public class GameGameChild extends BaseEntity {
|
|
|
private Long gameId;//
|
private Long memberId;//用户表ID
|
private BigDecimal amount;//投注金额
|
private Integer pickNum;//投注数字
|
|
private Integer state;//投注状态1-待结算2-已结算
|
public static final Integer STATE_ING = 1;
|
public static final Integer STATE_DONE = 2;
|
|
private Integer perkNumOne;//开出来的号码1
|
private Integer perkNumTwo;//开出来的号码2
|
|
private Integer perkState;//中奖状态 1-中奖 2-未中奖
|
public static final Integer PERK_STATE_YES = 1;
|
public static final Integer PERK_STATE_NO = 2;
|
|
private BigDecimal perkAmount;//中奖金额
|
}
|