ApplicableFreightRateServiceCharge.java
1.8 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
/**
* Copyright 2018 bejson.com
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableFreightRateServiceCharge {
@XmlElement(name = "CategoryCode",required = false)
private String CategoryCode;
@XmlElement(name = "CommodityItemID",required = false)
private String CommodityItemID;
@XmlElement(name = "ChargeableWeightMeasure",required = false)
private ChargeableWeightMeasure ChargeableWeightMeasure;
@XmlElement(name = "AppliedRate",required = false)
private String AppliedRate;
@XmlElement(name = "AppliedAmount",required = false)
private String AppliedAmount;
public void setCategoryCode(String CategoryCode) {
this.CategoryCode = CategoryCode;
}
public String getCategoryCode() {
return CategoryCode;
}
public void setCommodityItemID(String CommodityItemID) {
this.CommodityItemID = CommodityItemID;
}
public String getCommodityItemID() {
return CommodityItemID;
}
public void setChargeableWeightMeasure(ChargeableWeightMeasure ChargeableWeightMeasure) {
this.ChargeableWeightMeasure = ChargeableWeightMeasure;
}
public ChargeableWeightMeasure getChargeableWeightMeasure() {
return ChargeableWeightMeasure;
}
public void setAppliedRate(String AppliedRate) {
this.AppliedRate = AppliedRate;
}
public String getAppliedRate() {
return AppliedRate;
}
public void setAppliedAmount(String AppliedAmount) {
this.AppliedAmount = AppliedAmount;
}
public String getAppliedAmount() {
return AppliedAmount;
}
}