This commit is contained in:
hejinbo
2023-10-24 17:24:19 +08:00
6 changed files with 356 additions and 3 deletions
@@ -96,6 +96,8 @@ public class CaseApplicationController extends BaseController {
return toAjax(caseApplicationService.submitCaseApplication(batchCaseApplication.getIds()));
}
/**
* 删除立案数据
*/
@@ -158,6 +160,21 @@ public class CaseApplicationController extends BaseController {
return success(sealUrlRecordselect);
}
/**
* 案件证据材料压缩包上传
*
* @param file 附件
* @param id 案件申请id
* @return
*/
@PostMapping("/upload")
public AjaxResult uploadZipFile(@RequestParam("file") MultipartFile file, Long id) {
String username = this.getUsername();
Long userId = this.getUserId();
return caseApplicationService.uploadZipFile(file, id, username, userId);
}
/**
* 立案申请导入模板下载
*/