update 返回消息

This commit is contained in:
liao
2023-11-13 14:16:01 +08:00
parent 2a1086e392
commit 2830ece50a
2 changed files with 3 additions and 3 deletions
@@ -72,7 +72,7 @@ public class ProcessHandleServiceImpl implements IProcessHandleService {
String processDefinitionId = basicProcessInfoDTO.getProcessDefinitionId(); // 流程定义id
// 根据流程定义id启动流程
ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinitionId);
ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinitionId, userInfoMap);
String processInstanceId = processInstance.getId(); // 流程实例id
// 根据流程实例id更新流程总表
@@ -649,7 +649,7 @@ public class LawsCommonServiceImpl implements ILawsCommonService {
}
}
return MessageUtils.getMessage(ResultCommon.OK);
return ResultCommon.OK;
}
/**
@@ -786,7 +786,7 @@ public class LawsCommonServiceImpl implements ILawsCommonService {
esAuthUserService.resetAuthDept(id, parameterMap.get(FieldCommon.AUTH_DEPT).toString());
}
return MessageUtils.getMessage(ResultCommon.OK);
return ResultCommon.OK;
}
/**