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 outTicketResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="outTicketResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="networkStationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="outRemark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="outTicketDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="outTicketTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="serviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="statuCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "outTicketResult", propOrder = { "message", "networkStationCode", "outRemark", "outTicketDate", "outTicketTime", "serviceName", "statuCode" }) public class OutTicketResult { protected String message; protected String networkStationCode; protected String outRemark; protected String outTicketDate; protected String outTicketTime; protected String serviceName; protected String statuCode; /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * 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 outRemark property. * * @return * possible object is * {@link String } * */ public String getOutRemark() { return outRemark; } /** * Sets the value of the outRemark property. * * @param value * allowed object is * {@link String } * */ public void setOutRemark(String value) { this.outRemark = value; } /** * Gets the value of the outTicketDate property. * * @return * possible object is * {@link String } * */ public String getOutTicketDate() { return outTicketDate; } /** * Sets the value of the outTicketDate property. * * @param value * allowed object is * {@link String } * */ public void setOutTicketDate(String value) { this.outTicketDate = value; } /** * Gets the value of the outTicketTime property. * * @return * possible object is * {@link String } * */ public String getOutTicketTime() { return outTicketTime; } /** * Sets the value of the outTicketTime property. * * @param value * allowed object is * {@link String } * */ public void setOutTicketTime(String value) { this.outTicketTime = value; } /** * Gets the value of the serviceName property. * * @return * possible object is * {@link String } * */ public String getServiceName() { return serviceName; } /** * Sets the value of the serviceName property. * * @param value * allowed object is * {@link String } * */ public void setServiceName(String value) { this.serviceName = value; } /** * Gets the value of the statuCode property. * * @return * possible object is * {@link String } * */ public String getStatuCode() { return statuCode; } /** * Sets the value of the statuCode property. * * @param value * allowed object is * {@link String } * */ public void setStatuCode(String value) { this.statuCode = value; } }