| | |
| | | @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)); |
| | | } |
| | | } |