zhaowenxuan
2025-02-27 43727df73e52cc00a1f1aee3c20a1aec8db1b92f
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());
    }