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

* fix 修复pg数据库 强类型转换报错
This commit is contained in:
guo83551218 2025-03-19 05:23:34 +00:00 committed by 疯狂的狮子Li
parent bba163f7b4
commit 778096d100
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

@ -575,7 +575,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());