| | |
| | | |
| | | @Autowired |
| | | private IDaTestDeviceInterfaceTempService daTestDeviceInterfaceTempService; |
| | | String url = Constants.FACTORY_EMS_UAT_RUL+"deviceResultFeedback"; |
| | | |
| | | // String url = "https://imes-uat-group.geelycv-test.com/api/mom-open/restful/aMesSysIntegration/deviceResultFeedback"; |
| | | |
| | | // String url = "https://imes-group.geelycv.com/api/mom-open/restful/aMesSysIntegration/deviceResultFeedback"; |
| | | |
| | | /** |
| | | * 20工位接收清研数据 |
| | | */ |
| | | @PostMapping("/receiveOVCDataFrom020Workstations") |
| | | public AjaxResult receiveOVCDataFrom020Workstations(@RequestBody ParentVO parentVO) |
| | | { |
| | | |
| | | return AjaxResult.success(null); |
| | | } |
| | | |
| | | /** |
| | | * 导出点检任务列表 |
| | |
| | | if(parentVO.getStationCode().equals("M1OP020")){ |
| | | this.saveDaTestDeviceInterfaceTemp(parentVO,checkList); |
| | | } |
| | | HttpResponse execute = HttpRequest.post(url).body(JSONUtil.toJsonStr(parentVO)).execute(); |
| | | HttpResponse execute = HttpRequest.post(Constants.FACTORY_EMS_UAT_GET_RUL+"deviceResultFeedback").body(JSONUtil.toJsonStr(parentVO)).execute(); |
| | | return AjaxResult.success(execute.body()); |
| | | } |
| | | |