xiaoyong931011
2022-11-02 cd72d7e6c3acd087091c4b2d233f35765ddbfda7
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
32
33
34
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("igt_on_hook_plan_order_item")
public class IgtOnHookPlanOrderItem extends BaseEntity {
 
    //挂机人ID
    private Long memberId;
    //挂机主表ID
    private Long orderId;
    //金额
    private BigDecimal amount;
    //收益
    private BigDecimal profit;
    //生效状态 1:已生效 2:待生效
    private Integer state;
    //挂机方案倍数
    private Integer planCode;
    //1:未开奖2:中奖3未中奖
    private Integer isGoal;
    //所属期数
    private String belongNum;
    //挂机方案描述
    private String plan;
    //开奖顺序
    private Integer orderNum;
 
}