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