SCTLTOWERModelData.java 6.0 KB

package StSys.RoyoTech.client;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>SCTLTOWERModel.Data complex type的 Java 类。
 * 
 * <p>以下模式片段指定包含在此类中的预期内容。
 * 
 * <pre>
 * &lt;complexType name="SCTLTOWERModel.Data">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="Barcode2D" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="FromWhere" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.FromWhere" minOccurs="0"/>
 *         &lt;element name="HardwareGroupId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="Thickness" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="ToWhere" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.ToWhere" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SCTLTOWERModel.Data", propOrder = {
    "barcode2D",
    "fromWhere",
    "hardwareGroupId",
    "size",
    "thickness",
    "toWhere"
})
public class SCTLTOWERModelData {

    @XmlElementRef(name = "Barcode2D", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<String> barcode2D;
    @XmlElementRef(name = "FromWhere", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<SCTLTOWERModelFromWhere> fromWhere;
    @XmlElement(name = "HardwareGroupId")
    protected Integer hardwareGroupId;
    @XmlElementRef(name = "Size", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<String> size;
    @XmlElementRef(name = "Thickness", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<String> thickness;
    @XmlElementRef(name = "ToWhere", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<SCTLTOWERModelToWhere> toWhere;

    /**
     * 获取barcode2D属性的值。
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public JAXBElement<String> getBarcode2D() {
        return barcode2D;
    }

    /**
     * 设置barcode2D属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public void setBarcode2D(JAXBElement<String> value) {
        this.barcode2D = value;
    }

    /**
     * 获取fromWhere属性的值。
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link SCTLTOWERModelFromWhere }{@code >}
     *     
     */
    public JAXBElement<SCTLTOWERModelFromWhere> getFromWhere() {
        return fromWhere;
    }

    /**
     * 设置fromWhere属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link SCTLTOWERModelFromWhere }{@code >}
     *     
     */
    public void setFromWhere(JAXBElement<SCTLTOWERModelFromWhere> value) {
        this.fromWhere = value;
    }

    /**
     * 获取hardwareGroupId属性的值。
     * 
     * @return
     *     possible object is
     *     {@link Integer }
     *     
     */
    public Integer getHardwareGroupId() {
        return hardwareGroupId;
    }

    /**
     * 设置hardwareGroupId属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link Integer }
     *     
     */
    public void setHardwareGroupId(Integer value) {
        this.hardwareGroupId = value;
    }

    /**
     * 获取size属性的值。
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public JAXBElement<String> getSize() {
        return size;
    }

    /**
     * 设置size属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public void setSize(JAXBElement<String> value) {
        this.size = value;
    }

    /**
     * 获取thickness属性的值。
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public JAXBElement<String> getThickness() {
        return thickness;
    }

    /**
     * 设置thickness属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public void setThickness(JAXBElement<String> value) {
        this.thickness = value;
    }

    /**
     * 获取toWhere属性的值。
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link SCTLTOWERModelToWhere }{@code >}
     *     
     */
    public JAXBElement<SCTLTOWERModelToWhere> getToWhere() {
        return toWhere;
    }

    /**
     * 设置toWhere属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link SCTLTOWERModelToWhere }{@code >}
     *     
     */
    public void setToWhere(JAXBElement<SCTLTOWERModelToWhere> value) {
        this.toWhere = value;
    }

}