| package cc.mrbird.febs.mall.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "CollectionListVo", description = "会员收藏列表返回参数类") | 
| public class CollectionListVo { | 
|   | 
|     @ApiModelProperty(value = "id") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "商品ID") | 
|     private Long goodsId; | 
|   | 
|     @ApiModelProperty(value = "商品名称") | 
|     private String goodsName; | 
|   | 
|     @ApiModelProperty(value = "缩略图") | 
|     private String thumb; | 
|   | 
|     @ApiModelProperty(value = "价格") | 
|     private String presentPrice; | 
|   | 
|     @ApiModelProperty(value = "上下架 2-下架") | 
|     private Integer isSale; | 
| } |