#
LSH
2023-06-19 61d02c1796f3bedc6650e29cc33d9ee85e3a78fb
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;
    }
}