package net.tooan.ynpay.order.eadd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for serialSite complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialSite"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="networkStationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="siteCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="siteId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="siteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialSite", propOrder = { "networkStationCode", "siteCode", "siteId", "siteName" }) public class SerialSite { protected String networkStationCode; protected String siteCode; protected String siteId; protected String siteName; /** * Gets the value of the networkStationCode property. * * @return * possible object is * {@link String } * */ public String getNetworkStationCode() { return networkStationCode; } /** * Sets the value of the networkStationCode property. * * @param value * allowed object is * {@link String } * */ public void setNetworkStationCode(String value) { this.networkStationCode = value; } /** * Gets the value of the siteCode property. * * @return * possible object is * {@link String } * */ public String getSiteCode() { return siteCode; } /** * Sets the value of the siteCode property. * * @param value * allowed object is * {@link String } * */ public void setSiteCode(String value) { this.siteCode = value; } /** * Gets the value of the siteId property. * * @return * possible object is * {@link String } * */ public String getSiteId() { return siteId; } /** * Sets the value of the siteId property. * * @param value * allowed object is * {@link String } * */ public void setSiteId(String value) { this.siteId = value; } /** * Gets the value of the siteName property. * * @return * possible object is * {@link String } * */ public String getSiteName() { return siteName; } /** * Sets the value of the siteName property. * * @param value * allowed object is * {@link String } * */ public void setSiteName(String value) { this.siteName = value; } }