MaterialDataQuery.java
914 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
45
46
47
48
49
50
51
package com.huaheng.api.mes.domain;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class MaterialDataQuery {
/**
* 主工单号:MES那边将orderCode放在物料信息中
*/
//private String orderCode;
/**
* 物料编码
*/
private String materialCode;
/**
* 工序号
*/
private String flowCode;
/**
* 物料检测状态
*/
@JSONField(name = "materialStatus")
private Integer materialInspectStatus = 1;
/**
* 是否原材料,true:是,false:否
*/
//private Boolean isMaterial;
/**
* 可用总数量
*/
private BigDecimal usableQty;
/**
* 不可用总数量
*/
//private BigDecimal unUsableQty;
/**
* 不可用数量信息
*/
//private List<MesUnUsableQtyData> unUsableQtyDataList;
}