IAxxxService.java 851 B

1234567891011121314151617
  1. package com.cxfws.gkjcxx.service;
  2. import javax.jws.WebMethod;
  3. import javax.jws.WebResult;
  4. import javax.jws.WebService;
  5. import com.xt.jygl.gkjcxx.ax.entity.AxEntity;
  6. @WebService(targetNamespace = "http://service.web.jsjty.com/", portName = "axWebServicePort", serviceName = "axWebService")
  7. public interface IAxxxService {
  8. @WebMethod(operationName = "findAx",action="http://service.web.jsjty.com/findAx")
  9. @WebResult(name = "result",targetNamespace = "http://service.web.jsjty.com/")
  10. public String findAx(int page,int rows, String szdid,String szgkid,String szgqid,String axmc,String lyztid,String ssjyr);
  11. public String findOne(String id);
  12. public String save(AxEntity code, String szdid, String szgkid, String szgqid, String ssjyrid, String axlxid, String axgnid, String lyztid,String nbaid);
  13. public String delete(String id);
  14. }