DeclareManifestXml.java
2.6 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
package com.agent.xml.manifestdeclare;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.common.ContentXml;
import com.agent.xml.common.IDXml;
import com.agent.xml.common.NameXml;
/**
* Created by cohesion on 2017/4/22.
*
* 空运出口预配舱单主要/其它数据申报及变更报文
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class DeclareManifestXml {
@XmlElement(name = "RepresentativePerson",required = false)
private NameXml representativePerson;
@XmlElement(name = "ExitCustomsOffice",required = false)
private IDXml exitCustomsOffice;
@XmlElement(name = "Agent",required = false)
private IDXml agent;
@XmlElement(name = "Carrier",required = false)
private IDXml carrier;
@XmlElement(name = "BorderTransportMeans",required = false)
private DeclareBorderTransportMeansXml borderTransportMeans;
@XmlElement(name = "Consignment",required = false)
private DeclareConsignmentXml Consignment;
@XmlElement(name = "AdditionalInformation",required = false)
private ContentXml additionalInformation;
public NameXml getRepresentativePerson() {
return representativePerson;
}
public void setRepresentativePerson(NameXml representativePerson) {
this.representativePerson = representativePerson;
}
public IDXml getExitCustomsOffice() {
return exitCustomsOffice;
}
public void setExitCustomsOffice(IDXml exitCustomsOffice) {
this.exitCustomsOffice = exitCustomsOffice;
}
public IDXml getAgent() {
return agent;
}
public void setAgent(IDXml agent) {
this.agent = agent;
}
public IDXml getCarrier() {
return carrier;
}
public void setCarrier(IDXml carrier) {
this.carrier = carrier;
}
public DeclareBorderTransportMeansXml getBorderTransportMeans() {
return borderTransportMeans;
}
public void setBorderTransportMeans(DeclareBorderTransportMeansXml borderTransportMeans) {
this.borderTransportMeans = borderTransportMeans;
}
public DeclareConsignmentXml getConsignment() {
return Consignment;
}
public void setConsignment(DeclareConsignmentXml consignment) {
Consignment = consignment;
}
public ContentXml getAdditionalInformation() {
return additionalInformation;
}
public void setAdditionalInformation(ContentXml additionalInformation) {
this.additionalInformation = additionalInformation;
}
}