自动化立体仓库 - WMS系统
mrzhssss
2022-01-26 162b2345e5cae6ad327b5e931d9459c0cb6843e1
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.zy.asrs.entity;
 
/**
 * Created by vincent on 2020/6/12
 */
public class MatCodeCountDto {
 
    private String billNo;
 
    private Integer seqNo;
 
    private String matNo;
 
    private Double count;
 
    private String supplier;
    
    private String memo;
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
    public MatCodeCountDto() {
    }
 
    public MatCodeCountDto(String matNo, Double count) {
        this.matNo = matNo;
        this.count = count;
    }
 
    public MatCodeCountDto(String matNo, String supplier, Double count, String memo) {
        this.matNo = matNo;
        this.count = count;
        this.supplier = supplier;
        this.memo = memo;
    }
 
    public MatCodeCountDto(String matNo, String supplier, Double count) {
        this.matNo = matNo;
        this.supplier = supplier;
        this.count = count;
    }
 
    public MatCodeCountDto(String billNo, Integer seqNo, String matNo, String supplier, Double count) {
        this.matNo = matNo;
        this.count = count;
        this.billNo = billNo;
        this.supplier = supplier;
        this.seqNo = seqNo;
    }
    
 
    public String getBillNo() { return billNo; }
 
    public void setBillNo(String billNo) { this.billNo = billNo; }
 
    public Integer getSeqNo() { return seqNo; }
 
    public void setSeqNo(Integer seqNo) { this.seqNo = seqNo; }
 
    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 getSupplier() {
        return supplier;
    }
 
    public void setSupplier(String supplier) {
        this.supplier = supplier;
    }
}