12345678910111213141516171819202122232425262728293031 |
- package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebService;
- import javax.jws.soap.SOAPBinding;
- import javax.jws.soap.SOAPBinding.ParameterStyle;
- import javax.xml.bind.annotation.XmlSeeAlso;
- /**
- *
- * @描述 数据中心台帐服务
- * @auther liuyuliang
- * @filename UDSLWebService.java
- * @createDate 2016 2016年7月7日
- */
- @WebService(name = "UDSLWebService", targetNamespace = "http://dc.soa.csg.cn/")
- @SOAPBinding(parameterStyle = ParameterStyle.BARE)
- @XmlSeeAlso({com.sinosoft.nwyj.integration.cxf.dc.queryCustomData.ObjectFactory.class})
- public interface UDSLWebService {
- /**
- * 查询设备台帐
- *
- * @param request
- * @return
- */
- @WebMethod
- public QueryCustomDataResponse queryCustomData(
- @WebParam(name = "queryCustomDataRequest",targetNamespace="http://dc.soa.csg.cn/") QueryCustomDataRequest request);
- }
|