对比新文件 |
| | |
| | | package com.mzl.flower.dto.request.menber; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | |
| | | @Data |
| | | public class TargetMemberDTO { |
| | | @ApiModelProperty(value = "目标会员等级") |
| | | private String targetMemberLevel; |
| | | |
| | | @ApiModelProperty("目标会员等级要求成长值") |
| | | private int targetStartPoint; |
| | | |
| | | @ApiModelProperty("达到目标所需成长值") |
| | | private int targetGap; |
| | | |
| | | @ApiModelProperty("目标会员等级优惠金额") |
| | | private BigDecimal targetDiscountAmount; |
| | | |
| | | @ApiModelProperty("折扣类型") |
| | | private String targetDiscountType; |
| | | |
| | | @ApiModelProperty("折扣类型Str") |
| | | private String targetDiscountTypeStr; |
| | | |
| | | @ApiModelProperty("会员折扣百分比") |
| | | private BigDecimal targetDiscountRatio; |
| | | |
| | | |
| | | } |