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 cancelOrderResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="cancelOrderResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cancelDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="cancelRemark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="cancelTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <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="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 = "cancelOrderResult", propOrder = { "cancelDate", "cancelRemark", "cancelTime", "message", "networkStationCode", "serviceName", "statuCode" }) public class CancelOrderResult { protected String cancelDate; protected String cancelRemark; protected String cancelTime; protected String message; protected String networkStationCode; protected String serviceName; protected String statuCode; /** * Gets the value of the cancelDate property. * * @return * possible object is * {@link String } * */ public String getCancelDate() { return cancelDate; } /** * Sets the value of the cancelDate property. * * @param value * allowed object is * {@link String } * */ public void setCancelDate(String value) { this.cancelDate = value; } /** * Gets the value of the cancelRemark property. * * @return * possible object is * {@link String } * */ public String getCancelRemark() { return cancelRemark; } /** * Sets the value of the cancelRemark property. * * @param value * allowed object is * {@link String } * */ public void setCancelRemark(String value) { this.cancelRemark = value; } /** * Gets the value of the cancelTime property. * * @return * possible object is * {@link String } * */ public String getCancelTime() { return cancelTime; } /** * Sets the value of the cancelTime property. * * @param value * allowed object is * {@link String } * */ public void setCancelTime(String value) { this.cancelTime = value; } /** * 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 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; } }