自动化立体仓库 - WMS系统
*
L
20 小时以前 d7586e563701a4cb65065be3c4c3e4e66220222d
src/main/java/com/zy/asrs/entity/param/OrderToLine.java
@@ -11,7 +11,7 @@
    /**
     * 单据编号
     */
    private String OrderNo;
    private String orderNo;
    /**
     * 时间戳
@@ -33,7 +33,7 @@
        private String po;
        //箱数
        private Float ctns;
        private Double ctns;
        //条码值\非分拣属性(可人工开关)\不可为空\扫码可获取
        private String upc;
@@ -47,7 +47,7 @@
        private String supplier;
        //绑定标记(标识相同必须去同一个分拣口)
        private Long binding_tags;
        private Long bindingTags;
        public MatList() {
        }
@@ -55,14 +55,14 @@
            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 sku, String po, Double ctns, String upc, Integer sign, String supplier, Long bindingTags) {
            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;
        }
    }
}