wanghc
2023-03-07 af5e0edcb28df21859f8dc33ac78abcbb3272602
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
package com.jttech.pfcs.services.wsdl;
 
import com.jttech.pfcs.util.ObjectFactory;
import com.jttech.pfcs.vo.req.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.ReqPymtTrnRsltQryType;
import com.jttech.pfcs.vo.req.ReqTranQryType;
import com.jttech.pfcs.vo.req.ReqWHPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.RspWHPymtTrnRsltQryType;
 
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
 
/**
 * This class was generated by Apache CXF 3.5.1
 * 2023-03-06T14:24:11.892+08:00
 * Generated source version: 3.5.1
 *
 */
@WebService(targetNamespace = "http://esb.spdbbiz.com/services/S080030795/wsdl", name = "ESBServerPortType")
@XmlSeeAlso({com.jttech.pfcs.metadata.ObjectFactory.class, ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface ESBServerPortType {
 
    @WebMethod(operationName = "TranQry", action = "urn:/TranQry")
    @WebResult(name = "RspTranQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795", partName = "RspTranQry")
    public RspTranQryType tranQry(
 
        @WebParam(partName = "ReqTranQry", name = "ReqTranQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795")
                ReqTranQryType reqTranQry
    );
 
    @WebMethod(operationName = "WHPymtTrnRsltQry", action = "urn:/WHPymtTrnRsltQry")
    @WebResult(name = "RspWHPymtTrnRsltQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795", partName = "RspWHPymtTrnRsltQry")
    public RspWHPymtTrnRsltQryType whPymtTrnRsltQry(
 
        @WebParam(partName = "ReqWHPymtTrnRsltQry", name = "ReqWHPymtTrnRsltQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795")
                ReqWHPymtTrnRsltQryType reqWHPymtTrnRsltQry
    );
 
    @WebMethod(operationName = "EPCSnglTran", action = "urn:/EPCSnglTran")
    @WebResult(name = "RspEPCSnglTran", targetNamespace = "http://esb.spdbbiz.com/services/S080030795", partName = "RspEPCSnglTran")
    public RspEPCSnglTranType epcSnglTran(
 
        @WebParam(partName = "ReqEPCSnglTran", name = "ReqEPCSnglTran", targetNamespace = "http://esb.spdbbiz.com/services/S080030795")
                ReqEPCSnglTranType reqEPCSnglTran
    );
 
    @WebMethod(operationName = "PymtTrnRsltQry", action = "urn:/PymtTrnRsltQry")
    @WebResult(name = "RspPymtTrnRsltQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795", partName = "RspPymtTrnRsltQry")
    public RspPymtTrnRsltQryType pymtTrnRsltQry(
 
        @WebParam(partName = "ReqPymtTrnRsltQry", name = "ReqPymtTrnRsltQry", targetNamespace = "http://esb.spdbbiz.com/services/S080030795")
                ReqPymtTrnRsltQryType reqPymtTrnRsltQry
    );
}