案件修改
This commit is contained in:
+12
-1
@@ -439,5 +439,16 @@ public class CaseApplicationController extends BaseController {
|
||||
return caseApplicationService.uploadCaseZipFile(file);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 根据附件id修改案件id
|
||||
* @param caseAttach
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/updateCaseIdByAnnexId")
|
||||
public AjaxResult updateCaseIdByAnnexId(@RequestBody CaseAttach caseAttach) {
|
||||
if(caseAttach.getAnnexId()==null || caseAttach.getCaseAppliId()==null){
|
||||
return error("参数校验失败");
|
||||
}
|
||||
return caseApplicationService.updateCaseIdByAnnexId(caseAttach);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user