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 serialStation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialStation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="stationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="stationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="stationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialStation", propOrder = { "stationCode", "stationId", "stationName" }) public class SerialStation { protected String stationCode; protected String stationId; protected String stationName; /** * Gets the value of the stationCode property. * * @return * possible object is * {@link String } * */ public String getStationCode() { return stationCode; } /** * Sets the value of the stationCode property. * * @param value * allowed object is * {@link String } * */ public void setStationCode(String value) { this.stationCode = value; } /** * Gets the value of the stationId property. * * @return * possible object is * {@link String } * */ public String getStationId() { return stationId; } /** * Sets the value of the stationId property. * * @param value * allowed object is * {@link String } * */ public void setStationId(String value) { this.stationId = value; } /** * Gets the value of the stationName property. * * @return * possible object is * {@link String } * */ public String getStationName() { return stationName; } /** * Sets the value of the stationName property. * * @param value * allowed object is * {@link String } * */ public void setStationName(String value) { this.stationName = value; } }