Hentua
2024-02-22 512876186e0c74d6fc50c78f14b427dc5e83675f
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
51
52
53
54
55
56
57
58
59
60
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
@TableName("mall_vip_benefits")
@ApiModel(value = "MallVipBenefits")
public class MallVipBenefits extends BaseEntity {
 
    /**
     * 权益名称
     */
    @ApiModelProperty(value = "权益名称")
    private String name;
 
    /**
     * 权益类型;1-积分 2-指定商品 3-暂无
     */
    private Integer type;
 
    /**
     * 权益图标
     */
    @ApiModelProperty(value = "权益图标")
    private String icon;
 
    /**
     * 积分倍数
     */
    private BigDecimal scoreMultiple;
 
    /**
     * 获取途径 1-会员日 2-生日
     */
    private Integer gainType;
 
    /**
     * 权益备注
     */
    private String remark;
 
    /**
     * 是否在小程序上显示
     */
    private Integer isShow;
 
    @TableField(exist = false)
    private Integer isJump;
 
    @TableField(exist = false)
    private List<MallVipBenefitsDetails> details;
}