| | |
| | | package com.vci.ubcs.code.service; |
| | | |
| | | import javax.jws.WebService; |
| | | |
| | | /** |
| | |
| | | * @author xiejun |
| | | * @date 2022-11-27 |
| | | */ |
| | | @WebService(targetNamespace = "http://code.web.vci.com/",name = "universalInterface") |
| | | |
| | | @WebService(targetNamespace = "http://code.ubcs.vci.com/",name = "universalInterface") |
| | | public interface UniversalInterfaceI { |
| | | /** |
| | | *统一申请编码接口 |
| | |
| | | */ |
| | | public String queryData(String data,String dataType)throws Throwable; |
| | | |
| | | /*** |
| | | * 返回编码规则接口 |
| | | */ |
| | | public String queryClassifyRule(String data,String datatype)throws Throwable; |
| | | |
| | | } |