package com.mes.dasEquipmentService;
|
|
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.3.4
|
* 2020-12-04T10:26:10.995+08:00
|
* Generated source version: 3.3.4
|
*
|
*/
|
@WebService(targetNamespace = "http://das.service.eihub.rockwell.com/", name = "IEquipment")
|
@XmlSeeAlso({ObjectFactory.class})
|
public interface IEquipment {
|
|
@WebMethod
|
@RequestWrapper(localName = "receiveDasMaintainDetail", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasMaintainDetail")
|
@ResponseWrapper(localName = "receiveDasMaintainDetailResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasMaintainDetailResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receiveDasMaintainDetail(
|
|
@WebParam(name = "maintaindetail", targetNamespace = "")
|
String maintaindetail
|
);
|
|
@WebMethod
|
@RequestWrapper(localName = "receiveDasRepairDetail", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasRepairDetail")
|
@ResponseWrapper(localName = "receiveDasRepairDetailResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasRepairDetailResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receiveDasRepairDetail(
|
|
@WebParam(name = "repairdetail", targetNamespace = "")
|
String repairdetail
|
);
|
|
@WebMethod
|
@RequestWrapper(localName = "receiveDasRepairOrderData", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasRepairOrderData")
|
@ResponseWrapper(localName = "receiveDasRepairOrderDataResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentService.ReceiveDasRepairOrderDataResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receiveDasRepairOrderData(
|
|
@WebParam(name = "repairOrderData", targetNamespace = "")
|
String repairOrderData
|
);
|
}
|