package org.springblade.common.utils; import java.io.Serializable; import java.util.List; public interface INodeEx extends Serializable { Long getId(); Long getParentId(); List getChildren(); Long getFromId(); String getAncestors(); Integer getSort(); String getTreeSort(); Long getValue(); void setId(Long id); void setParentId(Long parentId); void setFromId(Long fromId); void setAncestors(String ancestors); void setSort(Integer sort); void setTreeSort(String sortTree); default Boolean getHasChildren() { return false; } }