| package com.mzl.flower.dto.response.payment; | 
|   | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| public class OrderCheckLocationListDTO extends AbstractTransDTO { | 
|     private Long partnerId;//合伙人id | 
|   | 
|     private String partnerName;//合伙人名称 | 
|   | 
|     private Long warehouseId;//仓库id | 
|   | 
|     @ApiModelProperty(value = "仓库名称") | 
|     private String warehouseName; | 
|   | 
|     private Long warehouseLocationId;//库位id | 
|   | 
|     @ApiModelProperty(value = "库位名称") | 
|     private String warehouseLocationCode; | 
|   | 
|     @ApiModelProperty(value = "收货人") | 
|     private String customer; | 
|   | 
|     @ApiModelProperty(value = "收货人手机号码") | 
|     private String customerTel; | 
|   | 
|     private String customerProvince; | 
|     private String customerCity; | 
|     private String customerRegion; | 
|   | 
|     @ApiModelProperty(value = "收货地址") | 
|     private String customerAddress; | 
|   | 
|     @ApiModelProperty(value = "明细") | 
|     private List<OrderItemLocationListDTO> items; | 
|   | 
|     private String createBy; | 
|   | 
|     @ApiModelProperty(value = "总金额") | 
|     private BigDecimal totalAmount; | 
| } |