legstar.test.jaxb.stru01.Stru01Record Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.01.05 at 05:42:50 PM CET
//
package legstar.test.jaxb.stru01;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Stru01Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Stru01Record">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comNumber">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* <totalDigits value="6"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comName">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comAmount">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
* <totalDigits value="7"/>
* <fractionDigits value="2"/>
* <minInclusive value="0"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comSubRecord" type="{http://jaxb.test.legstar/stru01}ComSubRecord"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Stru01Record", namespace = "http://jaxb.test.legstar/stru01", propOrder = {
"comNumber",
"comName",
"comAmount",
"comSubRecord"
})
public class Stru01Record {
@XmlElement(namespace = "http://jaxb.test.legstar/stru01")
protected long comNumber;
@XmlElement(namespace = "http://jaxb.test.legstar/stru01", required = true)
protected String comName;
@XmlElement(namespace = "http://jaxb.test.legstar/stru01", required = true)
protected BigDecimal comAmount;
@XmlElement(namespace = "http://jaxb.test.legstar/stru01", required = true)
protected ComSubRecord comSubRecord;
/**
* Gets the value of the comNumber property.
*
*/
public long getComNumber() {
return comNumber;
}
/**
* Sets the value of the comNumber property.
*
*/
public void setComNumber(long value) {
this.comNumber = value;
}
/**
* Gets the value of the comName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComName() {
return comName;
}
/**
* Sets the value of the comName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComName(String value) {
this.comName = value;
}
/**
* Gets the value of the comAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getComAmount() {
return comAmount;
}
/**
* Sets the value of the comAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setComAmount(BigDecimal value) {
this.comAmount = value;
}
/**
* Gets the value of the comSubRecord property.
*
* @return
* possible object is
* {@link ComSubRecord }
*
*/
public ComSubRecord getComSubRecord() {
return comSubRecord;
}
/**
* Sets the value of the comSubRecord property.
*
* @param value
* allowed object is
* {@link ComSubRecord }
*
*/
public void setComSubRecord(ComSubRecord value) {
this.comSubRecord = value;
}
}