| package com.mzl.flower.dto.response.flower; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| public class FlowerShowListDTO extends FlowerSupplierListDTO { | 
|   | 
|     @ApiModelProperty(value = "供应商名称") | 
|     private String supplierName; | 
|   | 
|     @ApiModelProperty(value = "供应商类型") | 
|     private String supplierType; | 
|   | 
|     @ApiModelProperty(value = "标签") | 
|     private String tags; | 
|   | 
|     @ApiModelProperty(value = "是否收藏") | 
|     private Boolean collection; | 
|   | 
|     private int collectCount; | 
|   | 
|     private Integer shopnum; | 
|   | 
|     @ApiModelProperty(value = "是否推荐") | 
|     private Boolean recommend; | 
|   | 
|     @ApiModelProperty(value = "会员价") | 
|     private BigDecimal priceMember; | 
| } |