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