压缩包导入

This commit is contained in:
hejinbo
2023-11-24 18:57:35 +08:00
parent 3a393be18d
commit e3cd2495cf
7 changed files with 208 additions and 255 deletions
@@ -429,4 +429,17 @@ public class CaseApplicationController extends BaseController {
return success(caseApplicationService.reserveConferenceList(caseId));
}
/**
* 案件压缩包导入
* @param file
* @return
* @throws IOException
*/
@PostMapping("/uploadCaseZipFile")
public AjaxResult uploadCaseZipFile(@RequestParam("file") MultipartFile file) throws IOException {
return caseApplicationService.uploadCaseZipFile(file);
}
}