| package com.mzl.flower.dto.response.flower; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| public class FlowerCartListDTO extends FlowerSupplierListDTO { | 
|     private Long supplierId; | 
|   | 
|     @ApiModelProperty(value = "供应商名称") | 
|     private String supplierName; | 
|   | 
|     @ApiModelProperty(value = "数量") | 
|     private Integer num; | 
|   | 
|     @ApiModelProperty(value = "总价") | 
|     private BigDecimal total; | 
|   | 
|     @ApiModelProperty(value = "每扎重量") | 
|     private Double weight; | 
|   | 
|     private Long stationId; | 
|   | 
|     private Long paramId; | 
|   | 
|     private Integer realSales;//真实销量 | 
|   | 
|     @ApiModelProperty(value = "会员价") | 
|     private BigDecimal priceMember; | 
|   | 
|     @ApiModelProperty(value = "会员价总价") | 
|     private BigDecimal totalMember; | 
| } |