MesShipmentByQCDto.java
946 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
52
53
54
55
56
57
package com.huaheng.api.mes.domain;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.io.Serializable;
/**
* MES质检抽样出库Dto类
*/
@Data
public class MesShipmentByQCDto implements Serializable {
private static final long serialVersionUID = 1L;
/**
* MES任务号
*/
private String taskNo;
/**
* 目标料点
*/
private String toPort;
/**
* 盛具编码
*/
@JSONField(name = "containerCode")
private String vehicleCode;
/**
* 物料状态
*/
@JSONField(name = "materialStatus")
private Integer materialInspectStatus;
/**
* 物料编码
*/
/*private String materialCode;*/
/**
* 工序号
*/
/*private String flowCode;*/
/**
* 库位编码
*/
/*private List<String> locationCodeList;*/
/**
* 工单号
*/
/*private String orderCode;*/
}