AgvTask.java
2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.huaheng.api.acs.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
* AGV任务实体
*
*/
@Data
public class AgvTask implements Serializable {
/*
private Integer id;
//交互标识
private String interactionId;
//任务头标识
private Integer taskHeaderId;
//任务子标识
private Integer taskDetailId;
//任务类型
private String taskType;
//货架编码
private String shelfNo;
//站台编码
private String station;
//源位置编码
private String fromLocationNo;
//目的位置编码
private String toLocationNo;
//方向
private String orientation;
//平台
private String platform;
//小车编号
private String carNo;
//状态
private String state;
//优先级
private Integer status;
//仓库ID
private Integer warehouseId;
//仓库编码
private String warehouseCode;
//货主ID
private Integer companyId;
//货主编码
private String companyCode;
//货主ID list
private List<Integer> companyIdList;
//货主list
private List<String> companyCodeList;
private Date date;*/
private Integer id;
private Integer internalTaskType;
private String taskNo;
private String preTaskNo;
private String interactionId;
private Integer taskHeaderId;
private Integer taskDetailId;
private Integer taskType;
private String shelfNo;
private String station;
private String fromPort;
private String toPort;
private String orientation;
private String platform;
private String carNo;
private Integer status;
private Integer warehouseId;
private String warehouseCode;
private Integer companyId;
private String companyCode;
private Integer priority;
private String parameters;
private String containerCode;
private List<Integer> companyIdList;
private List<String> companyCodeList;
private Date createdTime;
private String createdBy;
private Date updated;
private String updatedBy;
}