自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-17 f36c933e1b3d3b1abc72be9f800e719750ae7da1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.zy.asrs.entity.param;
 
import java.util.List;
 
/**
 * Created by vincent on 2020/6/13
 */
public class StockOutParam {
 
    // 出站口
    private Integer outSite;
 
    // 物料编号集合
    private List<LocDetl> locDetls;
 
    public Integer getOutSite() {
        return outSite;
    }
 
    public void setOutSite(Integer outSite) {
        this.outSite = outSite;
    }
 
    public List<LocDetl> getLocDetls() {
        return locDetls;
    }
 
    public void setLocDetls(List<LocDetl> locDetls) {
        this.locDetls = locDetls;
    }
 
    public static class LocDetl {
 
        // 库位号
        private String locNo;
 
        // 物料号
        private String matnr;
 
        // 数量
        private Integer count;
 
        public String getLocNo() {
            return locNo;
        }
 
        public void setLocNo(String locNo) {
            this.locNo = locNo;
        }
 
        public String getMatnr() {
            return matnr;
        }
 
        public void setMatnr(String matnr) {
            this.matnr = matnr;
        }
 
        public Integer getCount() {
            return count;
        }
 
        public void setCount(Integer count) {
            this.count = count;
        }
    }
}