puzhibing
2024-12-06 ea145f951b65368a064d5dbd1b5fb5ca48907ed9
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
61
62
63
64
65
package com.ruoyi.account.vo.vip;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class Level {
 
    @ApiModelProperty(value = "会员等级id")
    private Integer id;
 
    /**
     * 会员名称
     */
    @ApiModelProperty(value = "会员名称")
    private String name;
 
    @ApiModelProperty(value = "会员专属权益")
    private String vipInfo;
 
    @ApiModelProperty(value = "会员说明")
    private String vipDesc;
 
    @ApiModelProperty(value = "消费达到积分 后升级")
    private Integer vipLevelUpShop;
 
    @ApiModelProperty(value = "返佣达到积分 后升级")
    private Integer vipLevelUpShare;
 
    @ApiModelProperty(value = "升级会员的直推用户人数要求")
    private Integer vipDirectNum;
    @ApiModelProperty(value = "升级会员的团队数要求/准代人数")
    private Integer vipTeamNum;
 
    @ApiModelProperty(value = "保级:消费x天")
    private Integer keepBuyDay;
 
    @ApiModelProperty(value = "保级:消费x分")
    private Integer keepBuyPoint;
 
    @ApiModelProperty(value = "保级:返佣x天")
    private Integer keepShareDay;
 
    @ApiModelProperty(value = "保级:返佣x分")
    private Integer keepSharePoint;
 
    @ApiModelProperty(value = "保级:门店x天")
    private Integer keepShopDay;
 
    @ApiModelProperty(value = "保级:门店x分")
    private Integer keepShopPoint;
 
    @ApiModelProperty(value = "指定购买商品")
    private List<String> goodsNames;
 
 
 
 
 
 
}