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 viaStations complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="viaStations"> * <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="stationLeg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="stationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="stationOrder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="stationPrice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "viaStations", propOrder = { "stationCode", "stationId", "stationLeg", "stationName", "stationOrder", "stationPrice" }) public class ViaStations { protected String stationCode; protected String stationId; protected String stationLeg; protected String stationName; protected String stationOrder; protected String stationPrice; /** * 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 stationLeg property. * * @return * possible object is * {@link String } * */ public String getStationLeg() { return stationLeg; } /** * Sets the value of the stationLeg property. * * @param value * allowed object is * {@link String } * */ public void setStationLeg(String value) { this.stationLeg = 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; } /** * Gets the value of the stationOrder property. * * @return * possible object is * {@link String } * */ public String getStationOrder() { return stationOrder; } /** * Sets the value of the stationOrder property. * * @param value * allowed object is * {@link String } * */ public void setStationOrder(String value) { this.stationOrder = value; } /** * Gets the value of the stationPrice property. * * @return * possible object is * {@link String } * */ public String getStationPrice() { return stationPrice; } /** * Sets the value of the stationPrice property. * * @param value * allowed object is * {@link String } * */ public void setStationPrice(String value) { this.stationPrice = value; } }