zjh
2024-02-26 9d5525fc588ca0ef30685a998a0e45b5f7265514
zjh 本地 2024/02/26 -1
1个文件已修改
4 ■■■■ 已修改文件
ltkj-common/src/main/java/com/ltkj/common/core/domain/TreeSelect.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ltkj-common/src/main/java/com/ltkj/common/core/domain/TreeSelect.java
@@ -29,6 +29,9 @@
     */
    private String label;
    private String qf;
    /**
     * 子节点
     */
@@ -42,6 +45,7 @@
    public TreeSelect(SysDept dept) {
        this.id = dept.getDeptId();
        this.label = dept.getDeptName();
        this.qf=dept.getQf();
        this.children = dept.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
    }