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
| package cc.mrbird.febs.vip.entity;
|
| import cc.mrbird.febs.common.entity.BaseEntity;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| @Data
| @TableName("mall_vip_benefits_details")
| public class MallVipBenefitsDetails extends BaseEntity {
|
| /**
| * 图片链接
| */
| private String image;
|
| /**
| * 是否可点击;1-是 2-否
| */
| private Integer isClick;
|
| /**
| * 链接类型;1-链接 2-领取商品 3-优惠券
| */
| private Integer linkType;
|
| /**
| * 内容;根据linkType来的
| */
| private String content;
|
| /**
| * 排序
| */
| private String seq;
|
| /**
| * 权益ID
| */
| private Long benefitsId;
| }
|
|