b5a6b45871f7f133bbf0277c048267f84f7f41dd.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package pda;
  2. import java.util.HashMap;
  3. import javax.jws.WebMethod;
  4. import javax.jws.WebParam;
  5. import javax.jws.WebService;
  6. import org.apache.ibatis.annotations.Param;
  7. @WebService
  8. public interface WebService1 {
  9. @WebMethod
  10. public String getName(@WebParam(name = "userId") String userId);
  11. /**
  12. * 优特钢委托接口
  13. * @param materialInfo
  14. * @return
  15. * @throws Exception
  16. */
  17. @WebMethod
  18. public String autoGenerationSampleInfoYT(String materialInfo)throws Exception;
  19. /**
  20. * 中厚板委托接口
  21. * @param materialInfo
  22. * @return
  23. * @throws Exception
  24. */
  25. @WebMethod
  26. public String autoGenerationSampleInfoZHB(String materialInfo)throws Exception;
  27. /**
  28. * 婵☆偓鎷烽悰娆愭叏閺冿拷婢ь參宕ユ惔鈥抽叡閻犲鍟伴弫銈夊箳閵夈儱缍�
  29. * @param materialInfo
  30. * @return @WebParam(name="materialInfo")
  31. * @throws Exception
  32. */
  33. @WebMethod
  34. public String autoGenerationSampleInfo(String materialInfo)throws Exception;
  35. /**
  36. * 闁瑰瓨鍔曢崹搴ㄥ礆閵堝懐鏆伴柟鎭掑劚瑜帮拷
  37. */
  38. public String ChemJudge(@Param("smp_no") String smp_no,@Param("username") String username)throws Exception;
  39. /**
  40. * 闁哄鍔樺婵嬪礆閵堝懐鏆伴柟鎭掑劚瑜帮拷
  41. */
  42. public String PhyJudge(@Param("smp_no") String smp_no,@Param("username") String username)throws Exception;
  43. /**
  44. * 闁绘せ鏅滈弸锟犲Υ娴g瓔鍚傞柛妤佹礀鐏忣噣鏌婂鍡楀闁告瑱鎷� */
  45. public String JudgeCheck(@Param("material_no") String material_no,@Param("orderno") String orderno,@Param("cert_inst_name") String cert_inst_name)throws Exception;
  46. public String JudgeCheckC(@Param("material_no") String material_no,@Param("orderno") String orderno)throws Exception;
  47. /**
  48. * 閻愬ジ鎸楅幋鎰瀻閼奉亜濮╅崚銈呯暰
  49. * @throws Exception
  50. */
  51. /*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;*/
  52. /**
  53. * 閼奉亜濮╅崚銈呯暰
  54. * @throws Exception
  55. */
  56. //public String AutoJudge(@Param("material_no") String materail_no,@Param("username") String username) throws Exception;
  57. /**
  58. * 閼奉亜濮╅崚銈呯暰
  59. * @throws Exception
  60. */
  61. 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;
  62. public String JudgeCheckP01(@Param("param") String param)throws Exception;
  63. public String JudgeCheckC01(@Param("param") String param)throws Exception;
  64. public String JudgeCheck01(@Param("param") String param)throws Exception;
  65. public String JudgeCheckLT(@Param("param") String param)throws Exception;
  66. public String judgeHB1QMS(@Param("boardNo") String boardNo,@Param("designKey") String designKey)throws Exception;
  67. public String JudgeResult(@Param("param") String param)throws Exception;
  68. /**
  69. * 閸楅攱婢橀崗鍛秼闂勫秶楠�
  70. * @throws Exception
  71. */
  72. 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;
  73. @WebMethod
  74. public String sendDuplicateSample(String materialInfo)throws Exception;
  75. @WebMethod
  76. public String CancelUltimate(@Param("username") String username,@Param("material_no") String material_no,@Param("utm_id") String utm_id);
  77. @WebMethod
  78. public String sentenceDuplicateSample(HashMap parmas)throws Exception;
  79. @WebMethod
  80. public String sendZHBCY(String smpNo)throws Exception;
  81. @WebMethod
  82. public String sendZHBCYK(String smpNo)throws Exception;
  83. }