package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/28
|
*/
|
@Data
|
public class CombParam {
|
|
// 单据编号
|
private String orderNo;
|
|
// 货架条码
|
private String barcode;
|
|
// 货架条码
|
private Short containerType;
|
|
// 库位编号
|
private String locno;
|
|
// 库位类型: 1、待包装成品,2、原材料,3、箱壳
|
private Integer locType;
|
|
//第二单位数量
|
private Double anfme;
|
|
private List<CombMat> combMats;
|
|
@Data
|
public static class CombMat {
|
|
//料想码
|
private String containerCode;
|
|
//销售订单号
|
private String csocode;
|
|
//销售订单行号
|
private String isoseq;
|
|
// 物料编号
|
private String matnr;
|
|
// 序列码
|
private String batch;
|
|
// 物料数量
|
private Double anfme;
|
|
// 商品名称
|
private String maktx;
|
|
// 规格
|
private String specs;
|
|
// 工序状态 1:待加工,2:已加工,3:无需加工
|
private Integer processSts;
|
|
}
|
|
}
|