1234567891011121314151617181920212223242526272829303132333435 |
- package com.cxfws.xmxxgl.service;
- import javax.jws.WebMethod;
- import javax.jws.WebResult;
- import javax.jws.WebService;
- @WebService(targetNamespace = "http://service.web.jsjty.com/", portName = "jsjdglWebServicePort", serviceName = "jsjdglWebService")
- public interface IJsjdglWebService {
- @WebMethod(operationName = "findJsjdgl", action = "http://service.web.jsjty.com/findJsjdgl")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findJsjdgl(final String xmmc, final String szdid, final String szgkid, final String szgqid, final String dqzt, final String xmfr, final String lcjd);
-
-
- @WebMethod(operationName = "findOne", action = "http://service.web.jsjty.com/findOne")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findOne(String id);
-
- @WebMethod(operationName = "findHistoryAudit", action = "http://service.web.jsjty.com/findHistoryAudit")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findHistoryAudit(String id,String sortno);
-
- @WebMethod(operationName = "findSsgc", action = "http://service.web.jsjty.com/findSsgc")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findSsgc(String xmid);
-
- @WebMethod(operationName = "findJsjdByZyid", action = "http://service.web.jsjty.com/findJsjdByZyid")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findJsjdByZyid(String zyid);
-
- @WebMethod(operationName = "findLslc", action = "http://service.web.jsjty.com/findLslc")
- @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
- public String findLslc(String id);
- }
|