| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | |
| | | @ApiModelProperty("当前成长值") |
| | | private int currentGrowthValue; |
| | | |
| | | @ApiModelProperty("折扣类型") |
| | | private String currentDiscountType; |
| | | |
| | | @ApiModelProperty("折扣类型Str") |
| | | private String currentDiscountTypeStr; |
| | | |
| | | @ApiModelProperty("当前会员等级优惠金额") |
| | | private BigDecimal currentDiscountAmount; |
| | | |
| | | @ApiModelProperty("会员折扣百分比") |
| | | private BigDecimal currentDiscountRatio; |
| | | |
| | | List<TargetMemberDTO> targetMemberInfos; |
| | | |
| | | } |