MesOrderMaterial.java
682 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
40
41
42
43
44
package com.huaheng.api.mes.domain;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class MesOrderMaterial {
/**
* 工单领料单数量
*/
private BigDecimal shipmentReferQty;
/**
* 物料编码
*/
private String materialCode;
/**
* 是否原材料 true:是,false:不是
*/
private Boolean isMaterial;
/**
* 物料x
*/
private Integer locationNoX;
/**
* 工单领料单数量
*/
private Integer locationNoY;
/**
* 工单领料单数量
*/
private String tracingNo;
/**
* 工单领料单数量
*/
private Boolean qualityStatus;
}