yangys
2024-04-23 fe1a8b44747f355c5f3d293a0b8034d01d553b45
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;