MaterialDataByQCDto.java
1.29 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.huaheng.api.mes.domain;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* @author 游杰
*/
@Data
public class MaterialDataByQCDto implements Serializable {
private static final long serialVersionUID = 1L;
/**
* x坐标
*/
private Integer locationNoX = -1;
/**
* y坐标
*/
private Integer locationNoY = -1;
/**
* 是否原材料 true:是 false:否
*/
private Boolean isMaterial;
/**
* 物料编码
*/
private String materialCode;
/**
* 追溯码
*/
private String tracingNo;
/**
* 数量
*/
private BigDecimal qty;
/**
* 供应商编码
*/
private String supplierCode;
/**
* 供应商SN码
*/
private String supplierTracingNo;
/**
* 质量状态 true代表合格品,false代表不合格品
*/
private Boolean qualityStatus;
/**
* 库位编码
*/
private String locationCode;
/**
* 载具编码
*/
private String containerCode;
/**
* 载具类型编码
*/
private String containerTypeCode;
/**
* 盛具类型
*/
private String vehicleCode;
/**
* 盛具类型编码
*/
private String vehicleTypeCode;
}