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

* fix 修复pg数据库 强类型转换报错
master
guo83551218 10 months ago committed by 疯狂的狮子Li
parent bba163f7b4
commit 778096d100

@ -21,7 +21,7 @@ public class FlowNextNodeBo implements Serializable {
/**
* id
*/
private String taskId;
private Long taskId;
/**
*

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

Loading…
Cancel
Save