interface Dept { id: string; name: string; avatar: string; parentId: string; children: Array; } export default Dept;