fix 修复pg数据库 强类型转换报错

This commit is contained in:
疯狂的狮子Li
2025-03-19 13:25:53 +08:00
parent 820c56cfed
commit f80b29536b
2 changed files with 2 additions and 2 deletions

View File

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

View File

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