2024年7月2日
摘要: 作用 提供一个通用的树组件模型,用于将元素列表转成树节点。 实现 元素节点定义 public interface TreeNodeElement { /** * 当前节点key */ String getKey(); /** * 父节点key */ String getParentKey(); } 阅读全文
posted @ 2024-07-02 21:26 wastonl 阅读(2) 评论(0) 推荐(0) 编辑