PJDataSerivceSoap.java
3.1 KB
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
package com.bsth.wsdl;
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.2
* 2019-06-25T10:55:23.796+08:00
* Generated source version: 3.3.2
*
*/
@WebService(targetNamespace = "http://www.pd-transport.com/", name = "PJDataSerivceSoap")
@XmlSeeAlso({ObjectFactory.class})
public interface PJDataSerivceSoap {
/**
* 离退人员信息接口
*/
@WebMethod(operationName = "GetRetiredInfor", action = "http://www.pd-transport.com/GetRetiredInfor")
@RequestWrapper(localName = "GetRetiredInfor", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetRetiredInfor")
@ResponseWrapper(localName = "GetRetiredInforResponse", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetRetiredInforResponse")
@WebResult(name = "GetRetiredInforResult", targetNamespace = "http://www.pd-transport.com/")
public String getRetiredInfor(
@WebParam(name = "UnintCode", targetNamespace = "http://www.pd-transport.com/")
String unintCode,
@WebParam(name = "begin_date", targetNamespace = "http://www.pd-transport.com/")
String beginDate,
@WebParam(name = "end_date", targetNamespace = "http://www.pd-transport.com/")
String endDate
);
/**
* 薪资信息数据接口
*/
@WebMethod(operationName = "GetPAItem", action = "http://www.pd-transport.com/GetPAItem")
@RequestWrapper(localName = "GetPAItem", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetPAItem")
@ResponseWrapper(localName = "GetPAItemResponse", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetPAItemResponse")
@WebResult(name = "GetPAItemResult", targetNamespace = "http://www.pd-transport.com/")
public String getPAItem(
@WebParam(name = "Year", targetNamespace = "http://www.pd-transport.com/")
int year,
@WebParam(name = "Period", targetNamespace = "http://www.pd-transport.com/")
int period
);
/**
* 在职人员信息接口
*/
@WebMethod(operationName = "GetEmployee", action = "http://www.pd-transport.com/GetEmployee")
@RequestWrapper(localName = "GetEmployee", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetEmployee")
@ResponseWrapper(localName = "GetEmployeeResponse", targetNamespace = "http://www.pd-transport.com/", className = "com.pd_transport.GetEmployeeResponse")
@WebResult(name = "GetEmployeeResult", targetNamespace = "http://www.pd-transport.com/")
public String getEmployee(
@WebParam(name = "UnintCode", targetNamespace = "http://www.pd-transport.com/")
String unintCode,
@WebParam(name = "IDCard", targetNamespace = "http://www.pd-transport.com/")
String idCard
);
}