#
Junjie
2025-06-16 57b71a11fbe827dd822d0697b3eeaf2ddb08e948
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.zy.common.model;
 
import lombok.Data;
 
/**
 * Created by vincent on 2020/8/6
 */
@Data
public class MatDto {
 
    // 物料编号
    private String matnr;
 
    // 物料名称
    private String maktx;
 
    private String maknx;
 
    // 库位规格
    private String specs;
 
    // 物料数量
    private Double count;
 
    // 库位数量
    private Double total;
 
    //辅数量
    private Double weight;
 
    //托盘码
    private String barcode;
 
    //u8旧品名
    private String sku;
 
    //型号
    private String model;
 
    //客户名称
    private String supp;
 
    public MatDto() {
    }
 
    public MatDto(String matNo, String maktx, Double count, Double weight, Double total, String specs, String sku, String barcode, String model, String supp) {
        this.matnr = matNo;
        this.maktx = maktx;
        this.maknx = maktx;
        this.specs = specs;
        this.count = count;
        this.total = total;
        this.weight = weight;
        this.sku = sku;
        this.barcode = barcode;
        this.model = model;
        this.supp = supp;
    }
}