guns-core/src/main/java/com/stylefeng/guns/core/node/ZTreeNode.java
@@ -1,5 +1,7 @@ package com.stylefeng.guns.core.node; import java.util.List; /** * * jquery ztree 插件的节点 @@ -18,6 +20,15 @@ private Boolean open;//是否打开节点 private Boolean checked;//是否被选中 private List<ZTreeNode> children;//是否被选中 public List<ZTreeNode> getChildren() { return children; } public void setChildren(List<ZTreeNode> children) { this.children = children; } public Long getId() { return id;