SpecifiedLogisticsTransportMovementXml.java
2.5 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
103
104
package com.agent.xml.bill;
import com.agent.xml.common.NameXml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Created by cohesion on 2017/4/26.
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedLogisticsTransportMovementXml {
@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 NameXml usedLogisticsTransportMeans;
@XmlElement(name = "ArrivalEvent",required = false)
private OccurrenceArrivalLocationXml arrivalEvent;
@XmlElement(name = "DepartureEvent",required = false)
private DepartureEventXml departureEvent;
public String getStageCode() {
return stageCode;
}
public void setStageCode(String stageCode) {
this.stageCode = stageCode;
}
public String getModeCode() {
return modeCode;
}
public void setModeCode(String modeCode) {
this.modeCode = modeCode;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSequenceNumeric() {
return sequenceNumeric;
}
public void setSequenceNumeric(String sequenceNumeric) {
this.sequenceNumeric = sequenceNumeric;
}
public NameXml getUsedLogisticsTransportMeans() {
return usedLogisticsTransportMeans;
}
public void setUsedLogisticsTransportMeans(NameXml usedLogisticsTransportMeans) {
this.usedLogisticsTransportMeans = usedLogisticsTransportMeans;
}
public OccurrenceArrivalLocationXml getArrivalEvent() {
return arrivalEvent;
}
public void setArrivalEvent(OccurrenceArrivalLocationXml arrivalEvent) {
this.arrivalEvent = arrivalEvent;
}
public DepartureEventXml getDepartureEvent() {
return departureEvent;
}
public void setDepartureEvent(DepartureEventXml departureEvent) {
this.departureEvent = departureEvent;
}
}