Pre Merge pull request !658 from guo83551218/dev

This commit is contained in:
guo83551218 2025-03-19 03:34:52 +00:00 committed by Gitee
commit a2183e87e3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ public class FlowNextNodeBo implements Serializable {
/** /**
* 任务id * 任务id
*/ */
private String taskId; private Long taskId;
/** /**
* 流程变量 * 流程变量

View File

@ -575,7 +575,7 @@ public class FlwTaskServiceImpl implements IFlwTaskService {
*/ */
@Override @Override
public List<FlowNode> getNextNodeList(FlowNextNodeBo bo) { public List<FlowNode> getNextNodeList(FlowNextNodeBo bo) {
String taskId = bo.getTaskId(); Long taskId = bo.getTaskId();
Map<String, Object> variables = bo.getVariables(); Map<String, Object> variables = bo.getVariables();
Task task = taskService.getById(taskId); Task task = taskService.getById(taskId);
Instance instance = insService.getById(task.getInstanceId()); Instance instance = insService.getById(task.getInstanceId());