自动化立体仓库 - WMS系统
luxiaotao1123
2022-01-24 b1222309acc365c4c434fc532495142ce7e77ac9
src/main/java/com/zy/asrs/entity/MatCodeCountDto.java
@@ -18,13 +18,24 @@
    public MatCodeCountDto() {
    }
    public MatCodeCountDto(String matNo, Double count, String supplier) {
    public MatCodeCountDto(String matNo, Double count) {
        this.matNo = matNo;
        this.count = count;
        this.supplier = supplier;
    }
    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; }