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 serialCancelTicket complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialCancelTicket"> * <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="chargeFee" 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="orderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialCancelTicket", propOrder = { "cancelDate", "cancelRemark", "cancelTime", "chargeFee", "networkStationCode", "orderId" }) public class SerialCancelTicket { protected String cancelDate; protected String cancelRemark; protected String cancelTime; protected String chargeFee; protected String networkStationCode; protected String orderId; /** * 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 chargeFee property. * * @return * possible object is * {@link String } * */ public String getChargeFee() { return chargeFee; } /** * Sets the value of the chargeFee property. * * @param value * allowed object is * {@link String } * */ public void setChargeFee(String value) { this.chargeFee = 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 orderId property. * * @return * possible object is * {@link String } * */ public String getOrderId() { return orderId; } /** * Sets the value of the orderId property. * * @param value * allowed object is * {@link String } * */ public void setOrderId(String value) { this.orderId = value; } }