自动化立体仓库 - WCS系统
#
lsh
2024-01-12 3d9d870ef185961c598943ea45ea71b66f299511
src/main/java/com/zy/common/model/MatDto.java
@@ -11,7 +11,18 @@
    // 物料编号
    private String matNo;
    // 物料名称
    private String maknx;
    // 物料数量
    private Double count;
    public MatDto() {
    }
    public MatDto(String matNo, String maknx, Double count) {
        this.matNo = matNo;
        this.maknx = maknx;
        this.count = count;
    }
}