| | |
| | | /** |
| | | * 单据编号 |
| | | */ |
| | | private String OrderNo; |
| | | private String orderNo; |
| | | |
| | | /** |
| | | * 时间戳 |
| | |
| | | @Data |
| | | public static class MatList { |
| | | |
| | | // Sku\型号\分拣属性1\不可为空\扫码可获取 |
| | | private String item; |
| | | |
| | | // Sku\客人型号\分拣属性1\不可为空\扫码可获取 |
| | | private String sku; |
| | | |
| | |
| | | private String po; |
| | | |
| | | //箱数 |
| | | private Float ctns; |
| | | private Double ctns; |
| | | |
| | | //条码值\非分拣属性(可人工开关)\不可为空\扫码可获取 |
| | | private String upc; |
| | |
| | | //0:不分拣,在线体循环 |
| | | private Integer sign; |
| | | |
| | | //货源\非分拣属性(不下发,数据在条码中,需上报) |
| | | private String supplier; |
| | | //货源\非分拣属性(不下发,数据在条码中,需上报) 废弃 |
| | | // private String supplier; |
| | | |
| | | //绑定标记(标识相同必须去同一个分拣口) |
| | | private Long binding_tags; |
| | | private Long bindingTags; |
| | | |
| | | public MatList() { |
| | | } |
| | |
| | | this.sku = sku; |
| | | this.po = po; |
| | | } |
| | | public MatList(String sku, String po, Float ctns, String upc, Integer sign, String supplier, Long binding_tags) { |
| | | public MatList(String item, String sku, String po, Double ctns, String upc, Integer sign, Long bindingTags) { |
| | | this.item = item; |
| | | this.sku = sku; |
| | | this.po = po; |
| | | this.ctns = ctns; |
| | | this.upc = upc; |
| | | this.sign = sign; |
| | | this.supplier = supplier; |
| | | this.binding_tags = binding_tags; |
| | | this.bindingTags = bindingTags; |
| | | } |
| | | } |
| | | } |