package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/13
|
*/
|
@Data
|
public class StockOutParam {
|
|
// 出站口
|
private Integer outSite;
|
|
// AGV出战口
|
private String station;
|
|
// 物料编号集合
|
private List<LocDetl> locDetls;
|
|
@Data
|
public static class LocDetl {
|
|
// 库位号
|
private String locNo;
|
|
// 物料号
|
private String matnr;
|
|
// 序列码
|
private String batch;
|
|
// 数量
|
private Double count;
|
|
//货架码
|
private String suppCode;
|
|
//销售订单号
|
private String threeCode;
|
|
//销售订单行号
|
private String deadTime;
|
|
// 工序状态 1:待加工,2:已加工,3:无需加工
|
private Integer processSts;
|
}
|
|
}
|