MesReceiptByQCDto.java
1.17 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
package com.huaheng.api.mes.domain;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
/**
* MES质检抽样余料回库Dto类
*/
@Data
public class MesReceiptByQCDto {
/**
* MES任务号
*/
private String taskNo;
/**
* 起始料点
*/
private String fromPort;
/**
* 工单号
*/
private String orderCode;
/**
* 载具编码
*/
@JSONField(name = "vehicleCode")
private String containerCode;
/**
* 载具类型编码
*/
/*@JSONField(name = "vehicleTypeCode")
private String containerTypeCode;*/
/**
* 盛具编码
*/
@JSONField(name = "containerCode")
private String vehicleCode;
/**
* 盛具类型编码
*/
/*@JSONField(name = "containerTypeCode")
private String vehicleTypeCode;*/
/**
* 物料信息
*/
private List<ReceiptMaterialData> materialDataList;
/**
* 抽检范围
* 0: 不更新。
* 1:盛具。代表更新当前这个盛具的所有物料
* 2:工单。代表更新更新整个工单下的所有物料
*/
//private Integer changeRange;
}