SpecifiedLogisticsTransportMovement.java
2.4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
* Copyright 2018 bejson.com
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedLogisticsTransportMovement {
@XmlElement(name = "StageCode",required = false)
private String StageCode;
@XmlElement(name = "ModeCode",required = false)
private String ModeCode;
@XmlElement(name = "Mode",required = false)
private String Mode;
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "SequenceNumeric",required = false)
private String SequenceNumeric;
@XmlElement(name = "UsedLogisticsTransportMeans",required = false)
private UsedLogisticsTransportMeans UsedLogisticsTransportMeans;
@XmlElement(name = "ArrivalEvent",required = false)
private ArrivalEvent ArrivalEvent;
@XmlElement(name = "DepartureEvent",required = false)
private DepartureEvent DepartureEvent;
public void setStageCode(String StageCode) {
this.StageCode = StageCode;
}
public String getStageCode() {
return StageCode;
}
public void setModeCode(String ModeCode) {
this.ModeCode = ModeCode;
}
public String getModeCode() {
return ModeCode;
}
public void setMode(String Mode) {
this.Mode = Mode;
}
public String getMode() {
return Mode;
}
public void setID(String ID) {
this.ID = ID;
}
public String getID() {
return ID;
}
public void setSequenceNumeric(String SequenceNumeric) {
this.SequenceNumeric = SequenceNumeric;
}
public String getSequenceNumeric() {
return SequenceNumeric;
}
public void setUsedLogisticsTransportMeans(UsedLogisticsTransportMeans UsedLogisticsTransportMeans) {
this.UsedLogisticsTransportMeans = UsedLogisticsTransportMeans;
}
public UsedLogisticsTransportMeans getUsedLogisticsTransportMeans() {
return UsedLogisticsTransportMeans;
}
public void setArrivalEvent(ArrivalEvent ArrivalEvent) {
this.ArrivalEvent = ArrivalEvent;
}
public ArrivalEvent getArrivalEvent() {
return ArrivalEvent;
}
public void setDepartureEvent(DepartureEvent DepartureEvent) {
this.DepartureEvent = DepartureEvent;
}
public DepartureEvent getDepartureEvent() {
return DepartureEvent;
}
}