| package com.mzl.flower.dto.response.warehouse; | 
|   | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.dto.response.payment.OrderDTO; | 
| import com.mzl.flower.dto.response.payment.OrderItemListDTO; | 
| import com.mzl.flower.entity.payment.OrderItem; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| @Data | 
| public class WarehouseLocationDTO extends AbstractTransDTO { | 
|   | 
|     private Long id; | 
|     @ApiModelProperty("库区ID") | 
|     private Long warehouseId; | 
|   | 
|     @ApiModelProperty("库区名称") | 
|     private String warehouseName; | 
|   | 
|     @ApiModelProperty("名称") | 
|     private String code; | 
|   | 
|     @ApiModelProperty("排序") | 
|     private Long seq; | 
|   | 
|     @ApiModelProperty("是否已占用") | 
|     private Boolean used; | 
|   | 
|     private List<OrderDTO> orderDTO; | 
|   | 
|   | 
| } |