package io.gisbi.model; import java.util.List; public interface ITreeBase { String getNodeType(); Long getId(); void setId(Long id); Long getPid(); void setPid(Long pid); List getChildren(); void setChildren(List children); }