yangys
2024-05-09 014ac34ff2baf657c3236f41fdbf11c9d7d414b4
smart-core-tool/src/main/java/com/qianwen/core/tool/node/BaseNode.java
@@ -7,7 +7,6 @@
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)
@@ -15,7 +14,7 @@
    @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;