BUG修复
This commit is contained in:
+14
-1
@@ -278,12 +278,25 @@ public class MsCaseApplicationController extends BaseController {
|
||||
*/
|
||||
@PostMapping("/mediation")
|
||||
public AjaxResult mediation(@RequestBody MsCaseApplicationReq req) throws EsignDemoException, InterruptedException {
|
||||
if (req.getCaseFlowId() == null || req.getId() == null) {
|
||||
if (req.getCaseFlowId() == null || req.getId() == null || req.getMediaResult()==null) {
|
||||
return error("参数校验失败");
|
||||
}
|
||||
|
||||
return caseApplicationService.mediation(req);
|
||||
}
|
||||
/**
|
||||
* 确定会议结果
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/confirmMeetingResult")
|
||||
public AjaxResult confirmMeetingResult(@RequestBody MsCaseApplicationReq req) {
|
||||
if (req.getCaseFlowId() == null || req.getId() == null || req.getMediaResult()==null) {
|
||||
return error("参数校验失败");
|
||||
}
|
||||
|
||||
return caseApplicationService.confirmMeetingResult(req);
|
||||
}
|
||||
/**
|
||||
* 修改庭审笔录
|
||||
* @param
|
||||
|
||||
Reference in New Issue
Block a user