BillXmlBody.java
997 字节
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
package com.agent.xml.bill;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Created by cohesion on 2017/4/22.
* 主单
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "MSG")
public class BillXmlBody {
@XmlElement(name = "META",required = false)
private BillHeadXml head;
@XmlElement(name = "FhlMasterConsignment",required = false)
private MasterConsignmentXml masterConsignment;
public BillHeadXml getHead() {
return head;
}
public void setHead(BillHeadXml head) {
this.head = head;
}
public MasterConsignmentXml getMasterConsignment() {
return masterConsignment;
}
public void setMasterConsignment(MasterConsignmentXml masterConsignment) {
this.masterConsignment = masterConsignment;
}
}