GetPAItem.java 1.65 KB

package com.bsth.wsdl;

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&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
 *         &lt;element name="Period" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "year",
    "period"
})
@XmlRootElement(name = "GetPAItem")
public class GetPAItem {

    @XmlElement(name = "Year")
    protected int year;
    @XmlElement(name = "Period")
    protected int period;

    /**
     * ��ȡyear���Ե�ֵ��
     * 
     */
    public int getYear() {
        return year;
    }

    /**
     * ����year���Ե�ֵ��
     * 
     */
    public void setYear(int value) {
        this.year = value;
    }

    /**
     * ��ȡperiod���Ե�ֵ��
     * 
     */
    public int getPeriod() {
        return period;
    }

    /**
     * ����period���Ե�ֵ��
     * 
     */
    public void setPeriod(int value) {
        this.period = value;
    }

}