| package com.mzl.flower.dto.response.payment; | 
|   | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import com.mzl.flower.dto.response.flower.ParamItemDTO; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| public class DeliveryOrderItemDTO extends AbstractTransDTO { | 
|     @ApiModelProperty(value = "订单单号") | 
|     private String orderNo; | 
|   | 
|     @ApiModelProperty(value = "供应商名称") | 
|     private String supplierName; | 
|   | 
|     @ApiModelProperty(value = "仓库名称") | 
|     private String warehouseName; | 
|   | 
|     @ApiModelProperty(value = "库位名称") | 
|     private String warehouseLocationCode; | 
|   | 
|     @ApiModelProperty(value = "商品名称") | 
|     private String flowerName; | 
|   | 
|     @ApiModelProperty(value = "商品单位") | 
|     private String flowerUnit; | 
|   | 
|     @ApiModelProperty(value = "商品颜色") | 
|     private String flowerColor; | 
|   | 
|     @ApiModelProperty(value = "级别; FLOWER_LEVEL") | 
|     @DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL") | 
|     private String flowerLevel; | 
|     private String flowerLevelStr; | 
|   | 
|     @ApiModelProperty(value = "商品分类") | 
|     private String flowerCategory; | 
|   | 
|   | 
|     @ApiModelProperty(value = "商品参数") | 
|     private List<ParamItemDTO> params; | 
|   | 
|     private Integer num; | 
| } |