| package com.mzl.flower.dto.response.payment; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class OrderPointGoodsListDTO { | 
|     @ApiModelProperty(value = "积分商品ID") | 
|     private Long goodsId; | 
|   | 
|     @ApiModelProperty(value = "商品名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "商品描述") | 
|     private String description; | 
|   | 
|     @ApiModelProperty(value = "商品封面图") | 
|     private String cover; | 
|   | 
|     @ApiModelProperty(value = "商品图片") | 
|     private String pictures; | 
|   | 
|     @ApiModelProperty(value = "兑换数量") | 
|     private Integer num; | 
|   | 
| } |