| | |
| | | * @version version2.0 |
| | | * @className Member |
| | | * @date 2024/8/26 |
| | | * @description 会员管理功能实体类 |
| | | * @description 操作日志功能实体类 |
| | | */ |
| | | @Data |
| | | @TableName("t_member") |
| | |
| | | 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; |
| | | |
| | | @ApiModelProperty(value = "会员成长值获取规则") |
| | | private String growthValueDesc; |
| | | |
| | | } |