Hentua
2024-01-17 f49ed6f705319c17c41b5fcec767fca7448a8958
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
package cc.mrbird.febs.vip.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.List;
 
@Data
@TableName("mall_vip_benefits")
public class MallVipBenefits extends BaseEntity {
 
    /**
     * 权益名称
     */
    private String name;
 
    /**
     * 权益类型;1-积分 2-指定商品 3-暂无
     */
    private Integer type;
 
    /**
     * 权益图标
     */
    private String icon;
 
    /**
     * 积分倍数
     */
    private String multiple;
 
    /**
     * 权益备注
     */
    private String remark;
 
    @TableField(exist = false)
    private List<MallVipBenefitsDetails> details;
}