peng
3 天以前 da755e29b7a845b07063f00105f44b4020f8764d
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
40
41
42
43
44
45
46
47
48
49
50
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
 
/**
 * 抽奖活动奖品
 *
 * @author peng
 * @since 2025-08-14
 */
@Data
@TableName("lmk_prize_draw")
public class PrizeDraw extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("prize_name")
    /** 奖品名称 */
    private String prizeName;
 
    @TableField("prize_type")
    /** 奖品类型 */
    private String prizeType;
 
    @TableField("coupon_id")
    /** 优惠卷id */
    private Long couponId;
 
    @TableField("prize_content")
    /** 奖品内容 */
    private String prizeContent;
 
    @TableField("prize_cover")
    /** 奖品封面 */
    private String prizeCover;
 
    @TableField("prize_des")
    /** 奖品描述 */
    private String prizeDes;
 
    @TableField("prize_img")
    /** 奖品图片 */
    private String prizeImg;
 
 
}