对比新文件 |
| | |
| | | package org.jeecg.modules.wms.service; |
| | | |
| | | import org.jeecg.modules.wms.WMSObjectFactory; |
| | | import org.jeecg.modules.wms.dto.WSResponse; |
| | | import org.jeecg.modules.wms.request.ArrayOfWebServiceSendItem; |
| | | import org.jeecg.modules.wms.request.WebReservationOrder; |
| | | |
| | | import javax.jws.WebMethod; |
| | | import javax.jws.WebParam; |
| | | import javax.jws.WebResult; |
| | | import javax.jws.WebService; |
| | | import javax.xml.bind.annotation.XmlSeeAlso; |
| | | import javax.xml.ws.RequestWrapper; |
| | | import javax.xml.ws.ResponseWrapper; |
| | | |
| | | /** |
| | | * This class was generated by Apache CXF 3.5.5 |
| | | * 2025-08-15T16:30:13.468+08:00 |
| | | * Generated source version: 3.5.5 |
| | | * |
| | | */ |
| | | @WebService(targetNamespace = "http://tempuri.org/", name = "WebServiceSoap") |
| | | @XmlSeeAlso({WMSObjectFactory.class}) |
| | | public interface WebServiceSoap { |
| | | |
| | | @WebMethod(operationName = "ReceiveReservation", action = "http://tempuri.org/ReceiveReservation") |
| | | @RequestWrapper(localName = "ReceiveReservation", targetNamespace = "http://tempuri.org/", className = "ReceiveReservation") |
| | | @ResponseWrapper(localName = "ReceiveReservationResponse", targetNamespace = "http://tempuri.org/", className = "ReceiveReservationResponse") |
| | | @WebResult(name = "ReceiveReservationResult", targetNamespace = "http://tempuri.org/") |
| | | WSResponse receiveReservation( |
| | | |
| | | @WebParam(name = "oWebReservationOrder", targetNamespace = "http://tempuri.org/") |
| | | WebReservationOrder oWebReservationOrder |
| | | ); |
| | | |
| | | @WebMethod(operationName = "HelloWorld", action = "http://tempuri.org/HelloWorld") |
| | | @RequestWrapper(localName = "HelloWorld", targetNamespace = "http://tempuri.org/", className = "HelloWorld") |
| | | @ResponseWrapper(localName = "HelloWorldResponse", targetNamespace = "http://tempuri.org/", className = "HelloWorldResponse") |
| | | @WebResult(name = "HelloWorldResult", targetNamespace = "http://tempuri.org/") |
| | | String helloWorld(); |
| | | |
| | | @WebMethod(operationName = "ReceiveMESScanItemList", action = "http://tempuri.org/ReceiveMESScanItemList") |
| | | @RequestWrapper(localName = "ReceiveMESScanItemList", targetNamespace = "http://tempuri.org/", className = "ReceiveMESScanItemList") |
| | | @ResponseWrapper(localName = "ReceiveMESScanItemListResponse", targetNamespace = "http://tempuri.org/", className = "ReceiveMESScanItemListResponse") |
| | | @WebResult(name = "ReceiveMESScanItemListResult", targetNamespace = "http://tempuri.org/") |
| | | WSResponse receiveMESScanItemList( |
| | | |
| | | @WebParam(name = "oMESScanItemList", targetNamespace = "http://tempuri.org/") |
| | | ArrayOfWebServiceSendItem oMESScanItemList |
| | | ); |
| | | |
| | | @WebMethod(operationName = "DeliOrderDelete", action = "http://tempuri.org/DeliOrderDelete") |
| | | @RequestWrapper(localName = "DeliOrderDelete", targetNamespace = "http://tempuri.org/", className = "DeliOrderDelete") |
| | | @ResponseWrapper(localName = "DeliOrderDeleteResponse", targetNamespace = "http://tempuri.org/", className = "DeliOrderDeleteResponse") |
| | | @WebResult(name = "DeliOrderDeleteResult", targetNamespace = "http://tempuri.org/") |
| | | WSResponse deliOrderDelete( |
| | | |
| | | @WebParam(name = "sFactoryCode", targetNamespace = "http://tempuri.org/") |
| | | String sFactoryCode, |
| | | @WebParam(name = "sStockRecord", targetNamespace = "http://tempuri.org/") |
| | | String sStockRecord |
| | | ); |
| | | } |