Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Arbitrate-Backend into hjb
This commit is contained in:
+17
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 立案申请导入模板下载
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user