IJsjdglWebService.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.cxfws.xmxxgl.service;
  2. import javax.jws.WebMethod;
  3. import javax.jws.WebResult;
  4. import javax.jws.WebService;
  5. @WebService(targetNamespace = "http://service.web.jsjty.com/", portName = "jsjdglWebServicePort", serviceName = "jsjdglWebService")
  6. public interface IJsjdglWebService {
  7. @WebMethod(operationName = "findJsjdgl", action = "http://service.web.jsjty.com/findJsjdgl")
  8. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  9. public String findJsjdgl(final String xmmc, final String szdid, final String szgkid, final String szgqid, final String dqzt, final String xmfr, final String lcjd);
  10. @WebMethod(operationName = "findOne", action = "http://service.web.jsjty.com/findOne")
  11. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  12. public String findOne(String id);
  13. @WebMethod(operationName = "findHistoryAudit", action = "http://service.web.jsjty.com/findHistoryAudit")
  14. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  15. public String findHistoryAudit(String id,String sortno);
  16. @WebMethod(operationName = "findSsgc", action = "http://service.web.jsjty.com/findSsgc")
  17. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  18. public String findSsgc(String xmid);
  19. @WebMethod(operationName = "findJsjdByZyid", action = "http://service.web.jsjty.com/findJsjdByZyid")
  20. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  21. public String findJsjdByZyid(String zyid);
  22. @WebMethod(operationName = "findLslc", action = "http://service.web.jsjty.com/findLslc")
  23. @WebResult(name = "result", targetNamespace = "http://service.web.jsjty.com/")
  24. public String findLslc(String id);
  25. }