李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 
package com.chinaztt.mes.common.oa;
 
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.Holder;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
 
 
/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.9-b130926.1035
 * Generated source version: 2.2
 * 
 */
@WebService(name = "OA_WorkFlowRequestSoap", targetNamespace = "http://tempuri.org/")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface OAWorkFlowRequestSoap {
 
 
    /**
     * 
     * @param requestid
     * @param clientip
     * @param remark
     * @param forwardoperator
     * @param userId
     * @return
     *     returns java.lang.String
     */
    @WebMethod(action = "http://tempuri.org/forwardWorkflowRequest")
    @WebResult(name = "forwardWorkflowRequestResult", targetNamespace = "http://tempuri.org/")
    @RequestWrapper(localName = "forwardWorkflowRequest", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.ForwardWorkflowRequest")
    @ResponseWrapper(localName = "forwardWorkflowRequestResponse", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.ForwardWorkflowRequestResponse")
    public String forwardWorkflowRequest(
        @WebParam(name = "requestid", targetNamespace = "http://tempuri.org/")
        int requestid,
        @WebParam(name = "forwardoperator", targetNamespace = "http://tempuri.org/")
        String forwardoperator,
        @WebParam(name = "remark", targetNamespace = "http://tempuri.org/")
        String remark,
        @WebParam(name = "userId", targetNamespace = "http://tempuri.org/")
        int userId,
        @WebParam(name = "clientip", targetNamespace = "http://tempuri.org/")
        String clientip);
 
    /**
     * 
     * @param addWorkflowResult
     * @param errorCode
     * @param appKey
     * @param wri
     * @param errorMsg
     */
    @WebMethod(operationName = "AddWorkflow", action = "http://tempuri.org/AddWorkflow")
    @RequestWrapper(localName = "AddWorkflow", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.AddWorkflow")
    @ResponseWrapper(localName = "AddWorkflowResponse", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.AddWorkflowResponse")
    public void addWorkflow(
        @WebParam(name = "appKey", targetNamespace = "http://tempuri.org/")
        String appKey,
        @WebParam(name = "wri", targetNamespace = "http://tempuri.org/")
        OAWorkflowRequestInfo wri,
        @WebParam(name = "errorCode", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.INOUT)
        Holder<String> errorCode,
        @WebParam(name = "errorMsg", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.INOUT)
        Holder<String> errorMsg,
        @WebParam(name = "AddWorkflowResult", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.OUT)
        Holder<String> addWorkflowResult);
 
    /**
     * 
     * @param errorCode
     * @param appKey
     * @param updateAndSubmitWorkflowResult
     * @param wri
     * @param errorMsg
     */
    @WebMethod(operationName = "UpdateAndSubmitWorkflow", action = "http://tempuri.org/UpdateAndSubmitWorkflow")
    @RequestWrapper(localName = "UpdateAndSubmitWorkflow", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.UpdateAndSubmitWorkflow")
    @ResponseWrapper(localName = "UpdateAndSubmitWorkflowResponse", targetNamespace = "http://tempuri.org/", className = "com.chinaztt.mes.common.oa.UpdateAndSubmitWorkflowResponse")
    public void updateAndSubmitWorkflow(
        @WebParam(name = "appKey", targetNamespace = "http://tempuri.org/")
        String appKey,
        @WebParam(name = "wri", targetNamespace = "http://tempuri.org/")
        OAWorkflowRequestInfo wri,
        @WebParam(name = "errorCode", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.INOUT)
        Holder<String> errorCode,
        @WebParam(name = "errorMsg", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.INOUT)
        Holder<String> errorMsg,
        @WebParam(name = "UpdateAndSubmitWorkflowResult", targetNamespace = "http://tempuri.org/", mode = WebParam.Mode.OUT)
        Holder<String> updateAndSubmitWorkflowResult);
 
}