| package com.mzl.flower.dto.response.payment; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| import java.time.LocalDateTime; | 
| import java.util.List; | 
|   | 
| @Data | 
| public class DeliveryOrderListDTO extends AbstractTransDTO { | 
|     private String id; | 
|   | 
|     private String orderId; | 
|   | 
|     @ApiModelProperty(value = "订单单号") | 
|     private String orderNo; | 
|   | 
|     @ApiModelProperty(value = "配送单状态") | 
|     @DictTrans(target = "statusStr", codeType = "DELIVERY_ORDER_STATUS") | 
|     private String status; | 
|     private String statusStr; | 
|   | 
|     @ApiModelProperty(value = "下单时间") | 
|     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") | 
|     @DateTimeFormat | 
|     private LocalDateTime paymentTime; | 
|   | 
|     @ApiModelProperty(value = "仓库名称") | 
|     private String warehouseName; | 
|   | 
|     @ApiModelProperty(value = "库位名称") | 
|     private String warehouseLocationCode; | 
|   | 
|     @ApiModelProperty(value = "商品明细") | 
|     private List<OrderItemListDTO> items; | 
| } |