fix hasChildren MenuTree也添加hasChildren false

This commit is contained in:
shepf 2020-09-27 16:14:55 +08:00
parent c8ffadbc25
commit 75e992312a
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ public class MenuTree extends TreeNode implements Serializable {
this.label = menuVo.getName();
this.sort = menuVo.getSort();
this.keepAlive = menuVo.getKeepAlive();
this.hasChildren = false;
}
}