package com.ruoyi.common.core.domain;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import com.ruoyi.common.core.domain.entity.SysDept;
|
import com.ruoyi.common.core.domain.entity.SysMenu;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
import java.util.Map;
|
import java.util.stream.Collectors;
|
|
/**
|
* Treeselect树结构实体类
|
*
|
* @author ruoyi
|
*/
|
public class TreeSelectWell implements Serializable
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 节点ID */
|
private Long id;
|
|
/** 节点名称 */
|
private String label;
|
|
/** 子节点 */
|
private List<TreeSelectWell> children = new ArrayList<>();
|
|
public TreeSelectWell()
|
{
|
|
}
|
|
public TreeSelectWell(TreeDeptWell dept)
|
{
|
this.id = dept.getDeptId();
|
this.label = dept.getDeptName();
|
this.children = dept.getChildren().stream().map(TreeSelectWell::new).collect(Collectors.toList());
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public String getLabel()
|
{
|
return label;
|
}
|
|
public void setLabel(String label)
|
{
|
this.label = label;
|
}
|
|
public List<TreeSelectWell> getChildren()
|
{
|
return children;
|
}
|
|
public void setChildren(List<TreeSelectWell> children)
|
{
|
this.children = children;
|
}
|
|
}
|