feat: 老法规文件导入逻辑

This commit is contained in:
2023-12-04 15:02:28 +08:00
parent 7358a7fcdc
commit 6b8415e1c4
5 changed files with 201 additions and 7 deletions
@@ -98,4 +98,13 @@ public class OldSystemController {
enterpriseStandardService.filterChineseStandardNo(file, response);
}
@PostMapping("/importFileRelationExcel")
@AutoLog(value = "老法规系统-导入文件附件等关联关系")
@ApiOperation(value="老法规系统-导入文件附件等关联关系", notes="老法规系统-导入文件附件等关联关系", produces = "application/octet-stream")
@ApiOperationSupport(order = 7)
public void importFileRelationExcel(@RequestParam("file") MultipartFile file,
HttpServletResponse response) throws IOException {
enterpriseStandardService.importFileRelationExcel(file, response);
}
}