自动化立体仓库 - WCS系统
#
zjj
2025-04-12 eee7007808da799beed335c0f50f1730b2672460
src/main/java/com/zy/common/model/MatDto.java
@@ -27,19 +27,20 @@
    // 物料数量
    private Double count;
    private Double anfme;
    private Double total;
    private String sku;
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) {
    public MatDto(String matnr, String maknx, String batch, String specs, Double anfme, String unit) {
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
        this.specs = specs;
        this.manu = manu;
        this.memo = memo;
        this.count = count;
        this.total = total;
        this.anfme = anfme;
        this.sku = unit;
    }
    public MatDto(String matNo, String maknx, Double count) {