| | |
| | | public Result updateProjectProcessPrintCount(@PathVariable String projectNo){ |
| | | return Result.seccess(flowCardService.updateProjectProcessPrintCount(projectNo)); |
| | | } |
| | | |
| | | @ApiOperation("流程卡合架") |
| | | @PostMapping("/flowCardDetail") |
| | | public Result flowCardDetail( |
| | | @RequestBody Map<String, Object> object) { |
| | | return Result.seccess(flowCardService.flowCardDetail(object)); |
| | | } |
| | | |
| | | @ApiOperation("保存流程卡合架") |
| | | @PostMapping("/updateProcessCardRack") |
| | | public Result updateProcessCardRack( |
| | | @RequestBody Map<String, Object> object) { |
| | | return Result.seccess(flowCardService.updateProcessCardRack(object)); |
| | | } |
| | | |
| | | @ApiOperation("智能分架") |
| | | @PostMapping("/processCardAutoRack") |
| | | public Result processCardAutoRack(@ RequestBody Map<String, Object> object) { |
| | | return Result.seccess(flowCardService.processCardAutoRack(object)); |
| | | } |
| | | } |