| package com.mzl.flower.dto.request.menber; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| public class UserGrowthRecordDTO { | 
|     @ApiModelProperty(value = "当前会员等级") | 
|     private String currentMemberLevel; | 
|   | 
|     @ApiModelProperty("当前成长值") | 
|     private int currentGrowthValue; | 
|   | 
|     @ApiModelProperty("折扣类型") | 
|     private String currentDiscountType; | 
|   | 
|     @ApiModelProperty("折扣类型Str") | 
|     private String currentDiscountTypeStr; | 
|   | 
|     @ApiModelProperty("当前会员等级优惠金额") | 
|     private BigDecimal currentDiscountAmount; | 
|   | 
|     @ApiModelProperty("会员折扣百分比") | 
|     private BigDecimal currentDiscountRatio; | 
|   | 
|     @ApiModelProperty("会员成长值获取规则") | 
|     private String currentGrowthValueDesc; | 
|   | 
|     List<TargetMemberDTO> targetMemberInfos; | 
|   | 
| } |