自动化立体仓库 - WMS系统
luxiaotao1123
2022-01-24 8140a5a0686cfac15bb0422be187185491bf61c0
src/main/java/com/zy/asrs/entity/MatCodeCountDto.java
@@ -13,20 +13,18 @@
    private Double count;
    private String supplier;
    public MatCodeCountDto() {
    }
    public MatCodeCountDto(String matNo, Double count) {
    public MatCodeCountDto(String matNo, Double count, String supplier) {
        this.matNo = matNo;
        this.count = count;
        this.supplier = supplier;
    }
    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; }
@@ -51,4 +49,12 @@
    public void setCount(Double count) {
        this.count = count;
    }
    public String getSupplier() {
        return supplier;
    }
    public void setSupplier(String supplier) {
        this.supplier = supplier;
    }
}