MaterialData.java
608 Bytes
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
package com.huaheng.api.mes.domain;
import lombok.Data;
import java.math.BigDecimal;
/**
* @author 游杰
*/
@Data
public class MaterialData {
private Integer locationNoX;
private Integer locationNoY;
private Boolean isMaterial;
/**
* 物料编码
*/
private String materialCode;
/**
* 追溯码
*/
private String tracingNo;
/**
* 数量
*/
private BigDecimal qty;
/**
* 质量状态 0代表合格品,1代表不合格品
*/
private Boolean qualityStatus;
/**
* 顺序
*/
private int sequence;
}