Commit 6f7b71de by huangfusuper

修正展开节点错误

parent 895a9f4f
...@@ -37,7 +37,7 @@ public class JavaTaskServiceImpl implements JavaTaskService { ...@@ -37,7 +37,7 @@ public class JavaTaskServiceImpl implements JavaTaskService {
return allByType.stream().map(javaTaskLog -> { return allByType.stream().map(javaTaskLog -> {
JavaTaskLogImportantVo javaTaskLogImportantVo = new JavaTaskLogImportantVo(); JavaTaskLogImportantVo javaTaskLogImportantVo = new JavaTaskLogImportantVo();
javaTaskLogImportantVo.setRowKey(UUID.randomUUID().toString().replace("-","")); javaTaskLogImportantVo.setRowKey(UUID.randomUUID().toString().replace("-",""));
javaTaskLogImportantVo.setHasChildren(true); javaTaskLogImportantVo.setHasChildren(false);
BeanUtils.copyProperties(javaTaskLog,javaTaskLogImportantVo); BeanUtils.copyProperties(javaTaskLog,javaTaskLogImportantVo);
return javaTaskLogImportantVo; return javaTaskLogImportantVo;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment