自动化立体仓库 - WMS系统
野心家
2024-12-23 fffcf8f632eb551f11d018184547ce01dcc4907f
src/main/java/com/zy/asrs/entity/param/OpenOrderPakinJDParam.java
@@ -36,17 +36,32 @@
        private Double anfme;
        private String owner;
        private String origin;
        private int entryId;
        private String sourceLocName;//源仓库
        private String targetLocName;//目标仓库
        public DetlDto2(){}
        public DetlDto2(String matnr,String maktx,String batch,String specs,Double anfme,String owner,String origin){
        public DetlDto2(String matnr,String maktx,String batch,String specs,Double anfme,String owner,int entryId){
            this.matnr=matnr;
            this.maktx=maktx;
            this.batch=batch;
            this.specs=specs;
            this.anfme=anfme;
            this.owner=owner;
            this.origin=origin;
            this.entryId=entryId;
        }
        public DetlDto2(String matnr, String maktx, String batch, String specs, Double anfme, String owner, int entryId, String sourceLocName, String targetLocName) {
            this.matnr = matnr;
            this.maktx = maktx;
            this.batch = batch;
            this.specs = specs;
            this.anfme = anfme;
            this.owner = owner;
            this.entryId = entryId;
            this.sourceLocName = sourceLocName;
            this.targetLocName = targetLocName;
        }
    }