| | |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | return super.importExcel(request, response, Cutter.class); |
| | | } |
| | | |
| | | /** |
| | | * 提取刀具 |
| | | * @param docId 文档Id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "刀具信息-提取刀具") |
| | | @ApiOperation(value = "刀具信息-提取刀具", notes = "刀具信息-提取刀具") |
| | | @GetMapping("/extractCutterInfo/{docId}/{attributionType}/{attributionId}") |
| | | public Result<?> extractCutterInfo(@PathVariable("docId") String docId |
| | | ,@PathVariable("attributionType") Integer attributionType |
| | | ,@PathVariable("attributionId") String attributionId) { |
| | | return service.extractAndSaveFromContent(docId,attributionId,attributionType); |
| | | } |
| | | |
| | | } |