自动化立体仓库 - WCS系统
*
lsh
2025-04-28 184980deb3f854a98eb112e7998875113ebbba9a
src/main/java/com/zy/common/model/MatDto.java
@@ -8,21 +8,34 @@
@Data
public class MatDto {
    // 物料编号
    private String matNo;
    private String matnr;
    // 物料名称
    private String maknx;
    private String maktx;
    // 库位规格
    private String specs;
    // 物料数量
    private Double count;
    // 库位数量
    private Double total;
    //工序
    private String sku;
    public MatDto() {
    }
    public MatDto(String matNo, String maknx, Double count) {
        this.matNo = matNo;
        this.maknx = maknx;
    public MatDto(String matnr, String maktx, String specs, Double count, Double total, String sku) {
        this.matnr = matnr;
        this.maktx = maktx;
        this.specs = specs;
        this.count = count;
        this.total = total;
        this.sku = sku;
    }
}