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()); }