ShuntNameXml.java
1.0 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
package com.agent.xml.shunt;
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/24.
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ShuntNameXml {
@XmlElement(name = "JourneyID",required = false)
private String journeyID;
@XmlElement(name = "TypeCode",required = false)
private String typeCode;
@XmlElement(name = "Carrier",required = false)
private String carrier;
public String getJourneyID() {
return journeyID;
}
public void setJourneyID(String journeyID) {
this.journeyID = journeyID;
}
public String getTypeCode() {
return typeCode;
}
public void setTypeCode(String typeCode) {
this.typeCode = typeCode;
}
public String getCarrier() {
return carrier;
}
public void setCarrier(String carrier) {
this.carrier = carrier;
}
}