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;
|
|
|
|
|
|
|
}
|