pang.jiabao
7 小时以前 db9da52e04e95cf0b3c4f196ce5e1baf7a58832d
src/main/java/com/zy/common/model/MatDto.java
@@ -8,6 +8,8 @@
@Data
public class MatDto {
    private String orderNo;
    // 物料编号
    private String matnr;
@@ -19,6 +21,8 @@
    private String specs;
    private String model;
    private Double anfme;
    private String manuDate;
@@ -39,6 +43,8 @@
    private Double total;
    private String standby1 = "";
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) {
@@ -51,15 +57,16 @@
        this.count = count;
        this.total = total;
    }
    public MatDto(String matnr,String batch,String specs,String manuDate,String model,double weight, double length,double volume) {
    public MatDto(String orderNo,String matnr,String maknx, String batch,String specs,String manuDate,String model,Double anfme,String standby1) {
        this.orderNo = orderNo;
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
        this.specs = specs;
        this.manuDate = manuDate;
        this.model = model;
        this.weight = weight;
        this.length = length;
        this.volume = volume;
        this.anfme = anfme;
        this.standby1 = standby1;
    }
    public MatDto(String matNo, String maknx, Double count) {