parent
b9b19c6808
commit
26392dcbd7
@ -0,0 +1,35 @@
|
|||||||
|
package com.glxp.api.admin.req.inout;
|
||||||
|
|
||||||
|
import com.glxp.api.admin.req.ListPageRequest;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class FilterOrderDetailRequest extends ListPageRequest {
|
||||||
|
|
||||||
|
private String docid;
|
||||||
|
private String goodsname;
|
||||||
|
private String companyname;
|
||||||
|
private String orderId;
|
||||||
|
private String orderIdFk;
|
||||||
|
private String startDate;
|
||||||
|
private String endDate;
|
||||||
|
private String billAction;
|
||||||
|
private String billcode;
|
||||||
|
private String fbillflag;
|
||||||
|
Long customerId;
|
||||||
|
|
||||||
|
//批次号
|
||||||
|
private String lotno;
|
||||||
|
|
||||||
|
//产品ID
|
||||||
|
private String uuidFk;
|
||||||
|
List<String> orderIds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品ID
|
||||||
|
*/
|
||||||
|
private String relId;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.api.admin.req.inout;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OrderUploadRequest {
|
||||||
|
private List<String> orderIds;
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package com.glxp.api.admin.req.inout;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PostUdimsOrderRequest {
|
||||||
|
|
||||||
|
List<OrderBean> orderBeans;
|
||||||
|
private String customerId;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class OrderBean {
|
||||||
|
private String orderId;
|
||||||
|
private String corpOrderId;
|
||||||
|
private String action;
|
||||||
|
private String actDate;
|
||||||
|
private String actor;
|
||||||
|
private String mainAction;
|
||||||
|
private String fromCorpId;
|
||||||
|
private String fromCorp;
|
||||||
|
private String remark;
|
||||||
|
private String invStorageCode;
|
||||||
|
private String invWarehouseCode;
|
||||||
|
private List<PostUdimsOrderDetailRequest> orderDetails;
|
||||||
|
private List<CodeBean> codes;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class CodeBean {
|
||||||
|
private String action;
|
||||||
|
private String mainAction;
|
||||||
|
private String code;
|
||||||
|
private String corpOrderId;
|
||||||
|
private String actor;
|
||||||
|
private String actDate;
|
||||||
|
private String fromCorpId;
|
||||||
|
private String fromCorp;
|
||||||
|
private String orderId;
|
||||||
|
private String batchNo;
|
||||||
|
private String produceDate;
|
||||||
|
private String expireDate;
|
||||||
|
private String serialNo;
|
||||||
|
private Integer count;
|
||||||
|
private String packageLevel;
|
||||||
|
private String warehouseCode;
|
||||||
|
|
||||||
|
private String customerId;
|
||||||
|
private String nameCode;
|
||||||
|
private String supId;//供应商ID
|
||||||
|
private String invStorageCode;
|
||||||
|
private String invWarehouseCode;
|
||||||
|
private String relId;
|
||||||
|
private Integer status;
|
||||||
|
private String locStorageCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue