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 serialInvalid complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialInvalid"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="invalidTicketDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="invalidTicketRemark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="invalidTicketTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialInvalid", propOrder = { "invalidTicketDate", "invalidTicketRemark", "invalidTicketTime" }) public class SerialInvalid { protected String invalidTicketDate; protected String invalidTicketRemark; protected String invalidTicketTime; /** * Gets the value of the invalidTicketDate property. * * @return * possible object is * {@link String } * */ public String getInvalidTicketDate() { return invalidTicketDate; } /** * Sets the value of the invalidTicketDate property. * * @param value * allowed object is * {@link String } * */ public void setInvalidTicketDate(String value) { this.invalidTicketDate = value; } /** * Gets the value of the invalidTicketRemark property. * * @return * possible object is * {@link String } * */ public String getInvalidTicketRemark() { return invalidTicketRemark; } /** * Sets the value of the invalidTicketRemark property. * * @param value * allowed object is * {@link String } * */ public void setInvalidTicketRemark(String value) { this.invalidTicketRemark = value; } /** * Gets the value of the invalidTicketTime property. * * @return * possible object is * {@link String } * */ public String getInvalidTicketTime() { return invalidTicketTime; } /** * Sets the value of the invalidTicketTime property. * * @param value * allowed object is * {@link String } * */ public void setInvalidTicketTime(String value) { this.invalidTicketTime = value; } }