MesEmptyContainer.java
902 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
package com.huaheng.api.mes.domain;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
/**
* @author 游杰
*/
@Data
public class MesEmptyContainer {
/**
* 任务号
*/
private String taskNo;
/**
* 工单号
*/
private String orderCode;
/**
* 起始站点
*/
private String fromPort;
/**
* 目标站点
*/
private String toPort;
/**
* 容器编码
*/
private String containerCode;
/**
* 盛具类型编码
*/
@JSONField(name = "containerTypeCode")
private String vehicleTypeCode;
/**
* 载具类型编码
*/
//private String containerTypeCode;
/**
* 载具编码
*/
private String vehicleCode;
/**
* 是否只入空载具,1:只入空载具 ,0:入空载具和空盛具
*/
//private int isEmptyVehBack;
}