MduCommonCommonAPIRequestOfSCTLTOWERModelDatauPUI5UtU.java 4.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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * <p>MduCommon.CommonAPIRequestOfSCTLTOWERModel.Datau_PUI5utU complex type的 Java 类。
 * 
 * <p>以下模式片段指定包含在此类中的预期内容。
 * 
 * <pre>
 * &lt;complexType name="MduCommon.CommonAPIRequestOfSCTLTOWERModel.Datau_PUI5utU">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="Data" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.Data" minOccurs="0"/>
 *         &lt;element name="Language" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="RequestTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         &lt;element name="UserID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MduCommon.CommonAPIRequestOfSCTLTOWERModel.Datau_PUI5utU", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", propOrder = {
    "data",
    "language",
    "requestTime",
    "userID"
})
@XmlSeeAlso({
    SCTLTOWERModelReelInLoaderRequest.class,
    SCTLTOWERModelReelMoveToWhereCompleteRequest.class,
    SCTLTOWERModelReelMoveToWhereRequest.class
})
public class MduCommonCommonAPIRequestOfSCTLTOWERModelDatauPUI5UtU {

    @XmlElementRef(name = "Data", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", type = JAXBElement.class, required = false)
    protected JAXBElement<SCTLTOWERModelData> data;
    @XmlElement(name = "Language")
    protected Integer language;
    @XmlElement(name = "RequestTime")
    @XmlSchemaType(name = "dateTime")
    protected XMLGregorianCalendar requestTime;
    @XmlElementRef(name = "UserID", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", type = JAXBElement.class, required = false)
    protected JAXBElement<String> userID;

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

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

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

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

    /**
     * 获取requestTime属性的值。
     * 
     * @return
     *     possible object is
     *     {@link XMLGregorianCalendar }
     *     
     */
    public XMLGregorianCalendar getRequestTime() {
        return requestTime;
    }

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

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

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

}