| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package pda;
- import java.util.HashMap;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebService;
- import org.apache.ibatis.annotations.Param;
- @WebService
- public interface WebService1 {
-
- @WebMethod
- public String getName(@WebParam(name = "userId") String userId);
- /**
- * 优特钢委托接口
- * @param materialInfo
- * @return
- * @throws Exception
- */
- @WebMethod
- public String autoGenerationSampleInfoYT(String materialInfo)throws Exception;
-
- /**
- * 中厚板委托接口
- * @param materialInfo
- * @return
- * @throws Exception
- */
- @WebMethod
- public String autoGenerationSampleInfoZHB(String materialInfo)throws Exception;
-
- /**
- * 婵☆偓鎷烽悰娆愭叏閺冿拷婢ь參宕ユ惔鈥抽叡閻犲鍟伴弫銈夊箳閵夈儱缍�
- * @param materialInfo
- * @return @WebParam(name="materialInfo")
- * @throws Exception
- */
- @WebMethod
- public String autoGenerationSampleInfo(String materialInfo)throws Exception;
-
-
- /**
- * 闁瑰瓨鍔曢崹搴ㄥ礆閵堝懐鏆伴柟鎭掑劚瑜帮拷
- */
- public String ChemJudge(@Param("smp_no") String smp_no,@Param("username") String username)throws Exception;
-
- /**
- * 闁哄鍔樺婵嬪礆閵堝懐鏆伴柟鎭掑劚瑜帮拷
- */
- public String PhyJudge(@Param("smp_no") String smp_no,@Param("username") String username)throws Exception;
-
- /**
- * 闁绘せ鏅滈弸锟犲Υ娴g瓔鍚傞柛妤佹礀鐏忣噣鏌婂鍡楀闁告瑱鎷� */
- public String JudgeCheck(@Param("material_no") String material_no,@Param("orderno") String orderno,@Param("cert_inst_name") String cert_inst_name)throws Exception;
-
- public String JudgeCheckC(@Param("material_no") String material_no,@Param("orderno") String orderno)throws Exception;
-
- /**
- * 閻愬ジ鎸楅幋鎰瀻閼奉亜濮╅崚銈呯暰
- * @throws Exception
- */
-
- /*public String LGRlChemJudgeBySystem(@Param("heat_no") String heat_no,@Param("material_no") String materail_no,@Param("design_key") String design_key,@Param("username") String username,@Param("grade_name") String grade_name,@Param("prod_name") String prod_name,@Param("prodline") String prodline) throws Exception;*/
-
- /**
- * 閼奉亜濮╅崚銈呯暰
- * @throws Exception
- */
-
- //public String AutoJudge(@Param("material_no") String materail_no,@Param("username") String username) throws Exception;
-
- /**
- * 閼奉亜濮╅崚銈呯暰
- * @throws Exception
- */
-
- public String JudgeCheckP(@Param("material_no") String material_no,@Param("orderno") String orderno,@Param("prodline") String prodline,@Param("heat_no") String heat_no,@Param("steel_name") String steel_name)throws Exception;
-
- public String JudgeCheckP01(@Param("param") String param)throws Exception;
-
- public String JudgeCheckC01(@Param("param") String param)throws Exception;
-
- public String JudgeCheck01(@Param("param") String param)throws Exception;
-
- public String JudgeCheckLT(@Param("param") String param)throws Exception;
-
- public String judgeHB1QMS(@Param("boardNo") String boardNo,@Param("designKey") String designKey)throws Exception;
-
- public String JudgeResult(@Param("param") String param)throws Exception;
-
- /**
- * 閸楅攱婢橀崗鍛秼闂勫秶楠�
- * @throws Exception
- */
-
- public void JBCD(@Param("arg0") String arg0,@Param("arg1") String arg1,@Param("arg2") String arg2,@Param("arg3") String arg3,@Param("arg4") String arg4,@Param("arg5") String arg5,@Param("arg6") String arg6,@Param("arg7") String arg7,@Param("arg8") String arg8)throws Exception;
-
- @WebMethod
- public String sendDuplicateSample(String materialInfo)throws Exception;
-
- @WebMethod
- public String CancelUltimate(@Param("username") String username,@Param("material_no") String material_no,@Param("utm_id") String utm_id);
- @WebMethod
- public String sentenceDuplicateSample(HashMap parmas)throws Exception;
-
- @WebMethod
- public String sendZHBCY(String smpNo)throws Exception;
-
- @WebMethod
- public String sendZHBCYK(String smpNo)throws Exception;
- }
|