| | |
| | | return service.extractAndSaveFromContent(docId,attributionId,attributionType); |
| | | } |
| | | |
| | | /** |
| | | * 发送刀具系统 |
| | | * @param docId 文档Id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "刀具信息-发送刀具系统") |
| | | @ApiOperation(value = "刀具信息-发送刀具系统", notes = "刀具信息-发送刀具系统") |
| | | @GetMapping("/sendCutterInfo/{docId}/{attributionType}/{attributionId}") |
| | | public Result<?> sendCutterInfo(@PathVariable("docId") String docId |
| | | ,@PathVariable("attributionType") Integer attributionType |
| | | ,@PathVariable("attributionId") String attributionId) { |
| | | return service.sendToCutterSystem(docId,attributionId,attributionType); |
| | | } |
| | | } |