package com.project.common.core.interfaces; import java.io.Serializable; import java.util.List; /** * 基础树节点 * @param */ public interface ITreeNode extends Serializable { Long getId(); Long getParentId(); List getChildren(); default Boolean getHasChildren() { return true; } }