KKSU
2024-06-24 96a6e0d312a35f4e9fc16d0c6c757768b9bfeb6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;//中奖金额
}