自动化立体仓库 - WMS系统
#
18516761980
2021-08-23 27042edaafc246ddd30b2453a2e9d11b7687800f
src/main/java/com/zy/asrs/entity/MatCodeCountDto.java
@@ -5,6 +5,10 @@
 */
public class MatCodeCountDto {
    private String billNo;
    private Integer seqNo;
    private String matNo;
    private Double count;
@@ -17,6 +21,21 @@
        this.count = count;
    }
    public MatCodeCountDto(String billNo, Integer seqNo, String matNo, Double count) {
        this.matNo = matNo;
        this.count = count;
        this.billNo = billNo;
        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;
    }