| package com.mzl.flower.dto.response.coupon; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class CouponPointStatisVO  { | 
|   | 
|     @ApiModelProperty(value = "优惠券总数") | 
|     private Integer totalAmount; | 
|   | 
|     @ApiModelProperty(value = "本月兑换优惠券总数") | 
|     private Integer curMonExchangeAmount; | 
|   | 
|     @ApiModelProperty(value = "本月兑换积分总数") | 
|     private Integer curMonExchangePointAmount; | 
|   | 
| } |