ShipmentObject.java
1009 Bytes
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
package com.huaheng.api.general.domain;
import java.io.Serializable;
import java.util.List;
public class ShipmentObject implements Serializable {
private static final long serialVersionUID = 59204535012L;
public ShipmentApiHeader ShipmentApiHeader;
public List<ShipmentItems> shipmentItemsList;
public ShipmentApiHeader getShipmentApiHeader() {
return ShipmentApiHeader;
}
public void setShipmentApiHeader(ShipmentApiHeader shipmentApiHeader) {
this.ShipmentApiHeader = shipmentApiHeader;
}
public List<ShipmentItems> getShipmentItemsList() {
return shipmentItemsList;
}
public void setShipmentItemsList(List<ShipmentItems> shipmentItemsList) {
this.shipmentItemsList = shipmentItemsList;
}
@Override
public String toString() {
return "ShipmentObject{" +
"ShipmentApiHeader=" + ShipmentApiHeader +
", shipmentItemsList=" + shipmentItemsList +
'}';
}
}