feat:改进部门模块

This commit is contained in:
wangyu 2021-11-28 22:03:20 +08:00
parent 73ee8dff47
commit a7206cf373
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ public abstract class TreeDomain<T extends TreeDomain<T>> extends AuditDomain {
// 深度遍历标识
private Integer depth;
// 是否是叶子节点
private Boolean leaf;
// 冗余的字段用来放儿子
@Transient
private List<T> children;