自动化立体仓库 - WCS系统
ZY
2024-07-25 a017829dfbcd09d395256d9714a34c3317c1b12d
src/main/java/com/zy/common/model/MatDto.java
@@ -14,17 +14,33 @@
    // 物料名称
    private String maknx;
    // 库位规格
    private String batch;
    private String specs;
    // 客户信息
    private String manu;
    // 备注
    private String memo;
    // 物料数量
    private Double count;
    // 库位数量
    private Double total;
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) {
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
        this.specs = specs;
        this.manu = manu;
        this.memo = memo;
        this.count = count;
        this.total = total;
    }
    public MatDto(String matNo, String maknx, Double count) {
        this.matnr = matNo;