Helius
2022-09-23 7c6f033b8754b07bf5c75ae8745a982d76f9abb4
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
35
36
37
38
39
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * 抽奖记录表
 */
@Data
@TableName("mall_act_luckdraw_record")
public class MallActLuckdrawRecord extends BaseEntity {
 
    /**
     * 中奖
     */
    public static final Integer STATUS_ENABLE = 1;
    /**
     * 没有中奖
     */
    public static final Integer STATUS_DISABLED = 0;
    //参与人ID
    private Long memberId;
    //活动ID
    private Long actId;
    //活动名称
    private String actName;
    //消耗积分数目
    private Integer actScoreCnt;
    //是否中奖 0:没有  1中奖
    private Integer status;
 
    @TableField(exist = false)
    private String name;
    @TableField(exist = false)
    private String account;
 
}