This commit is contained in:
18792927508
2024-01-29 15:03:15 +08:00
parent 9a8fbe0ef3
commit 0c4b3df7f8
7 changed files with 159 additions and 11 deletions
@@ -182,7 +182,8 @@ public class MsCaseApplicationController extends BaseController {
public AjaxResult verifyMediator(@RequestBody BookingVO vo ) {
if((vo.getId() == null && StrUtil.isEmpty(vo.getBatchNumber()))
|| vo.getCaseFlowId()==null
|| CollectionUtil.isEmpty(vo.getUserList())){
|| vo.getMediatorId()==null
|| StrUtil.isEmpty(vo.getMediatorName())){
return error("参数校验失败");
}
return caseApplicationService.verifyMediator(vo);