自动化立体仓库 - WCS系统
#
whycq
2023-12-19 55df48de02ac8e60c2cc8248980b061aaec19389
src/main/java/com/zy/common/model/MatDto.java
@@ -9,7 +9,7 @@
public class MatDto {
    // 物料编号
    private String matNo;
    private String matnr;
    // 物料名称
    private String maknx;
@@ -17,12 +17,20 @@
    // 物料数量
    private Double count;
    // 物料数量
    private String specs;
    // 物料数量
    private String model;
    public MatDto() {
    }
    public MatDto(String matNo, String maknx, Double count) {
        this.matNo = matNo;
    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;
    }
}