| | |
| | | import javax.xml.bind.annotation.XmlAccessorType; |
| | | import javax.xml.bind.annotation.XmlElement; |
| | | import javax.xml.bind.annotation.XmlType; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | |
| | |
| | | }) |
| | | @Getter |
| | | @Setter |
| | | public class WebReservationOrder { |
| | | public class WebReservationOrder implements Serializable { |
| | | |
| | | @XmlElement(name = "FactoryCode") |
| | | @XmlElement(name = "FactoryCode", namespace = "http://tempuri.org/") |
| | | protected String factoryCode; |
| | | @XmlElement(name = "ReservationOrder") |
| | | @XmlElement(name = "ReservationOrder", namespace = "http://tempuri.org/") |
| | | protected String reservationOrder; |
| | | @XmlElement(name = "Total", required = true) |
| | | @XmlElement(name = "Total", required = true, namespace = "http://tempuri.org/") |
| | | protected BigDecimal total; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "WebReservationOrder{" + |
| | | "factoryCode='" + factoryCode + '\'' + |
| | | ", reservationOrder='" + reservationOrder + '\'' + |
| | | ", total=" + total + |
| | | '}'; |
| | | } |
| | | } |