SCTLTOWERModelARMTowerSetData.java 2.4 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.ARMTowerSetData complex type的 Java 类。
 * 
 * <p>以下模式片段指定包含在此类中的预期内容。
 * 
 * <pre>
 * &lt;complexType name="SCTLTOWERModel.ARMTowerSetData">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="ArmShieldType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="TowerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SCTLTOWERModel.ARMTowerSetData", propOrder = {
    "armShieldType",
    "towerId"
})
public class SCTLTOWERModelARMTowerSetData {

    @XmlElement(name = "ArmShieldType")
    protected Integer armShieldType;
    @XmlElementRef(name = "TowerId", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
    protected JAXBElement<String> towerId;

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

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

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

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

}