ApplicableFreightRateServiceChargeXml.java
1.7 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
package com.agent.xml.deliveryInfo;
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;
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "ApplicableFreightRateServiceCharge")
public class ApplicableFreightRateServiceChargeXml {
@XmlElement(name = "CategoryCode",required = false)
private String categorycode;
@XmlElement(name = "CommodityItemID",required = false)
private String commodityitemid;
@XmlElement(name = "ChargeableWeightMeasure",required = false)
private String chargeableweightmeasure;
@XmlElement(name = "AppliedRate",required = false)
private String appliedrate;
@XmlElement(name = "AppliedAmount",required = false)
private String appliedamount;
public String getCategorycode() {
return categorycode;
}
public void setCategorycode(String categorycode) {
this.categorycode = categorycode;
}
public String getCommodityitemid() {
return commodityitemid;
}
public void setCommodityitemid(String commodityitemid) {
this.commodityitemid = commodityitemid;
}
public String getChargeableweightmeasure() {
return chargeableweightmeasure;
}
public void setChargeableweightmeasure(String chargeableweightmeasure) {
this.chargeableweightmeasure = chargeableweightmeasure;
}
public String getAppliedrate() {
return appliedrate;
}
public void setAppliedrate(String appliedrate) {
this.appliedrate = appliedrate;
}
public String getAppliedamount() {
return appliedamount;
}
public void setAppliedamount(String appliedamount) {
this.appliedamount = appliedamount;
}
}