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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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_config")
public class MallVipConfig extends BaseEntity {
 
    /**
     * 会员名称
     */
    private String name;
 
    /**
     * 主图
     */
    private String thumb;
 
    /**
     * 等级
     */
    private Integer level;
 
    /**
     * 有效期
     */
    private Integer validTime;
 
    /**
     * 有效期类型;day/month/year
     */
    private String validType;
 
    /**
     * 成为会员条件类型;1-指定商品 2-时间区间内消费金额
     */
    private Integer type;
 
    /**
     * 消费金额
     */
    private Double amount;
 
    /**
     * 指定月数
     */
    private Integer times;
 
    /**
     * 指定商品ID
     */
    private Long targetId;
}