| | |
| | | return R.ok(productionOperationTaskService.assign(dto)); |
| | | } |
| | | |
| | | /** |
| | | * 工单流转卡下载 |
| | | * @param response |
| | | * @param dto |
| | | */ |
| | | @PostMapping("/down") |
| | | @Operation(summary = "工单流转卡下载") |
| | | public void down(HttpServletResponse response, @RequestBody ProductionOperationTaskDto dto) { |
| | | productionOperationTaskService.down(response, dto); |
| | | } |
| | | |
| | | @GetMapping("/getOperation") |
| | | @Operation(summary = "工序详情查询") |
| | | public R<List<ProductionOperationTaskVo>> getOperation(ProductionOperationTaskDto dto) { |
| | | return R.ok(productionOperationTaskService.getOperation(dto)); |
| | | } |
| | | |
| | | } |