| | |
| | | import java.util.List; |
| | | import com.qianwen.core.tool.utils.StringPool; |
| | | |
| | | /* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/node/BaseNode.class */ |
| | | public class BaseNode<T> implements INode<T> { |
| | | private static final long serialVersionUID = 1; |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | protected Long parentId; |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | protected List<T> children = new ArrayList(); |
| | | protected List<T> children = new ArrayList<>(); |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | private Boolean hasChildren; |
| | | |