zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
    );
}