|  |  |  | 
|---|
|  |  |  | package com.zy.asrs.entity.param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.zy.common.model.DetlDto; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public class OpenOrderPakinParam { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String orderNo; | 
|---|
|  |  |  | private String orderType; //单据名称 | 
|---|
|  |  |  | private String inboundDate; //日期 | 
|---|
|  |  |  | private String orderNo; // 单据号 | 
|---|
|  |  |  | private String warehouse; //仓库 | 
|---|
|  |  |  | private String originWarehouse; //来源仓库 | 
|---|
|  |  |  | private String suppliers; // 供应商 | 
|---|
|  |  |  | private String salesman; //业务员 | 
|---|
|  |  |  | private String department; //部门 | 
|---|
|  |  |  | private String businessType; //业务类型 | 
|---|
|  |  |  | private String user; //制单人 | 
|---|
|  |  |  | //    private String quality; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String orderType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private List<Detl> orderDetails; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public static class Detl { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String matnr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String batch; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Double anfme; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | private List<DetlDto> details; //物料列表 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|