PJDataSerivceSoap.java 3.1 KB
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
    );
}