#
18516761980
2022-05-26 31a3b30ab98ed3e4c0f9e94cb9d9ffd4f8b22d1a
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;
    }
}