| 123456789101112131415161718192021222324252627282930313233343536 |
- package pda;
- import java.io.IOException;
- import java.sql.SQLException;
- import java.util.ArrayList;
- import java.util.List;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebService;
- import CoreFS.SA01.CoreIComponent;
- import CoreFS.SA06.CoreReturnObject;
- import CoreFS.SA01.CoreException;
- import CoreFS.SA01.CoreExceptionHandler;
- import CoreFS.SA06.CoreSqlType.CoreOracleType;
- @WebService
- public interface ICharacteristicValue
- {
- public String abc(String MESSAGESEQ,String b);
- public String uim01001 (String pname, ArrayList<String> ar) throws IOException, SQLException;
- public String uimSelect(String abc) throws IOException, SQLException;
- public String uim01002(String ProcedureName,ArrayList arcd1,ArrayList arcd2) throws SQLException;
-
-
- /**
- * 检验委托后台调用接口
- * @param materialInfo
- * @return
- * @throws Exception
- */
- @WebMethod
- public String autoGenerationSampleInfo(@WebParam(name="materialInfo")String materialInfo)throws Exception;
- }
|