李林
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
 
package com.chinaztt.mes.common.gsm.escort;
 
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 the JAX-WS RI.
 * JAX-WS RI 2.2.9-b130926.1035
 * Generated source version: 2.2
 * 
 */
@WebService(name = "EscortServiceSoap", targetNamespace = "http://tempuri.org/")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface EscortServiceSoap {
 
 
    /**
     * 
     * @param escortSingleAddModel
     * @return
     *     returns java.lang.String
     */
    @WebMethod(operationName = "SingleAdd", action = "http://tempuri.org/SingleAdd")
    @WebResult(name = "SingleAddResult", targetNamespace = "http://tempuri.org/")
    @RequestWrapper(localName = "SingleAdd", targetNamespace = "http://tempuri.org/", className = "GSM.escort.SingleAdd")
    @ResponseWrapper(localName = "SingleAddResponse", targetNamespace = "http://tempuri.org/", className = "GSM.escort.SingleAddResponse")
    public String singleAdd(
        @WebParam(name = "EscortSingleAddModel", targetNamespace = "http://tempuri.org/")
        EscortSingleAddModel escortSingleAddModel);
 
    /**
     * 
     * @param escortSingleDeleteModel
     * @return
     *     returns java.lang.String
     */
    @WebMethod(operationName = "SingleDelete", action = "http://tempuri.org/SingleDelete")
    @WebResult(name = "SingleDeleteResult", targetNamespace = "http://tempuri.org/")
    @RequestWrapper(localName = "SingleDelete", targetNamespace = "http://tempuri.org/", className = "GSM.escort.SingleDelete")
    @ResponseWrapper(localName = "SingleDeleteResponse", targetNamespace = "http://tempuri.org/", className = "GSM.escort.SingleDeleteResponse")
    public String singleDelete(
        @WebParam(name = "EscortSingleDeleteModel", targetNamespace = "http://tempuri.org/")
        EscortSingleDeleteModel escortSingleDeleteModel);
 
}