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