自动化立体仓库 - WMS系统
#
LSH
2023-10-25 b69791c7b86d65728a074bd79932bfa9a017f081
src/main/java/com/zy/asrs/entity/param/FullStoreParam.java
@@ -1,10 +1,13 @@
package com.zy.asrs.entity.param;
import lombok.Data;
import java.util.List;
/**
 * Created by vincent on 2020/6/11
 */
@Data
public class FullStoreParam {
    // 托盘条码
@@ -16,52 +19,18 @@
    // 物料列表数据
    private List<MatCodeStore> list;
    @Data
    public static class MatCodeStore {
        // 物料编号
        private String matNo;
        private String matnr;
        // 序列码
        private String batch;
        // 物料数量
        private Double count;
        private Double anfme;
        public String getMatNo() {
            return matNo;
        }
        public void setMatNo(String matNo) {
            this.matNo = matNo;
        }
        public Double getCount() {
            return count;
        }
        public void setCount(Double count) {
            this.count = count;
        }
    }
    public String getBarcode() {
        return barcode;
    }
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
    public Integer getDevpNo() {
        return devpNo;
    }
    public void setDevpNo(Integer devpNo) {
        this.devpNo = devpNo;
    }
    public List<MatCodeStore> getList() {
        return list;
    }
    public void setList(List<MatCodeStore> list) {
        this.list = list;
    }
}