|
|
|
@ -21,10 +21,11 @@ import javax.jws.WebService;
|
|
|
|
|
public class WebServiceServerSPS {
|
|
|
|
|
public static final Logger LOGGER = LoggerFactory.getLogger(WebServiceServerSPS.class);
|
|
|
|
|
|
|
|
|
|
@WebMethod(action = "SyncSPSForEquipmentService", operationName = "SyncSPSForEquipmentService")
|
|
|
|
|
public MesPullingOrderInfo syncSPSForEquipment() {
|
|
|
|
|
@WebMethod(action = "GetCurrentOrder", operationName = "GetCurrentOrder")
|
|
|
|
|
public String syncSPSForEquipment() {
|
|
|
|
|
MesPullingOrderInfoService bean = (MesPullingOrderInfoService) SpringContextsUtil.getBean("mesPullingOrderInfoService");
|
|
|
|
|
return bean.doSPSForEquipment100();
|
|
|
|
|
bean.doSPSForEquipment100();
|
|
|
|
|
return "xxx";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@WebMethod(action = "GetCurrentOrderJson", operationName = "GetCurrentOrderJson")
|
|
|
|
|