ChargeableWeightMeasure.java
1005 字节
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
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月15日 上午11:41:29
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ChargeableWeightMeasure {
@XmlValue
private String ChargeableWeightMeasure;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public ChargeableWeightMeasure() {
}
public String getChargeableWeightMeasure() {
return ChargeableWeightMeasure;
}
public void setChargeableWeightMeasure(String chargeableWeightMeasure) {
ChargeableWeightMeasure = chargeableWeightMeasure;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}