| | |
| | | @Autowired |
| | | private IBsBeatSettingService bsBeatSettingService; |
| | | |
| | | @Autowired |
| | | private IDaParamCollectionService daParamCollectionService; |
| | | |
| | | /** |
| | | * 导出点检任务列表 |
| | | */ |
| | | @PostMapping("/deviceResultFeedback") |
| | | public AjaxResult deviceResultFeedback(@RequestBody ParentVO parentVO) |
| | | { |
| | | //如果是240工位就处理一下总成号,坏了找聂磊 |
| | | if(parentVO.getStationCode().equals("OP210")){ |
| | | parentVO.setProductNum("TZ180XSDSZX01"+parentVO.getProductNum()); |
| | | } |
| | | if(parentVO.getStationCode().equals("OP240")){ |
| | | parentVO.setProductNum("TZ180XSDSZX01"+parentVO.getProductNum().split("#T")[1]); |
| | | } |
| | | ObjectMapper mapper = new ObjectMapper(); |
| | | List<ChildVO> li = parentVO.getCheckList(); |
| | | String checkList = ""; |
| | |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | @GetMapping("/pushStartStopTime") |
| | | public AjaxResult pushStartStopTime(@RequestParam String paramCode,@RequestParam String paramName,@RequestParam String productNum){ |
| | | daParamCollectionService.pushStartStopTime(paramCode,paramName,productNum); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | /** |
| | | * 放行请空状态 |
| | | */ |