GetShipmentStatusByBillId.java 2.0 KB

package com.agent.webservice;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>anonymous complex type的 Java 类。
 * 
 * <p>以下模式片段指定包含在此类中的预期内容。
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="Freight" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="Xquery" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "freight",
    "xquery"
})
@XmlRootElement(name = "GetShipmentStatusByBillId")
public class GetShipmentStatusByBillId {

    @XmlElement(name = "Freight")
    protected String freight;
    @XmlElement(name = "Xquery")
    protected String xquery;

    /**
     * 获取freight属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getFreight() {
        return freight;
    }

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

    /**
     * 获取xquery属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getXquery() {
        return xquery;
    }

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

}