野心家
2025-04-19 a219712287947505bae9e9b970c0b292d642b1f3
src/main/java/com/zy/common/model/MatDto.java
@@ -20,13 +20,17 @@
    // 物料数量
    private String specs;
    // 图号
    private String model;
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, Double count, String specs) {
    public MatDto(String matnr, String maknx, Double count, String specs,String model) {
        this.matnr = matnr;
        this.maknx = maknx;
        this.count = count;
        this.specs = specs;
        this.model = model;
    }
}