| | |
| | | package com.mzl.flower.entity.menber; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | |
| | | private int endPoint; |
| | | |
| | | @ApiModelProperty("会员折扣类型(百分比、固定金额)") |
| | | private int discountType; |
| | | private String discountType; |
| | | |
| | | @ApiModelProperty("会员折扣百分比") |
| | | private BigDecimal discountRatio; |
| | |
| | | @ApiModelProperty("未消费产生的下降值") |
| | | private int downgradeValue; |
| | | |
| | | @ApiModelProperty("成长值规则") |
| | | private String growthRule; |
| | | @ApiModelProperty("背景") |
| | | private String background; |
| | | |
| | | @ApiModelProperty("图片") |
| | | private String pictures; |
| | | } |