AgvNotifi.java
1.13 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
package com.huaheng.api.acs.domain;
import lombok.Data;
@Data
public class AgvNotifi {
private String taskNo;
private String carNo;
private int status;
private String lastUpdatedBy;
private String oldPort;
private String newPort;
public String getTaskNo() {
return taskNo;
}
public void setTaskNo(String taskNo) {
this.taskNo = taskNo;
}
public String getCarNo() {
return carNo;
}
public void setCarNo(String carNo) {
this.carNo = carNo;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
public void setLastUpdatedBy(String lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy;
}
public String getOldPort() {
return oldPort;
}
public void setOldPort(String oldPort) {
this.oldPort = oldPort;
}
public String getNewPort() {
return newPort;
}
public void setNewPort(String newPort) {
this.newPort = newPort;
}
}