zhaowenxuan
2025-02-05 97491d6a8b69787431b9189bfa5b3f9de1ca6d0a
ltkj-common/src/main/java/com/ltkj/common/core/domain/TreeSelect.java
@@ -34,6 +34,8 @@
    private String qf;
    private String status;
    /**
     * 子节点
     */
@@ -48,6 +50,7 @@
        this.id = dept.getDeptId();
        this.label = dept.getDeptName();
        this.qf=dept.getQf();
        this.status=dept.getStatus();
        this.children = dept.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
    }