1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| package com.mindskip.xzs.viewmodel.admin.department;
|
| import com.mindskip.xzs.base.BasePage;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class DepartmentResponseVM extends BasePage {
|
|
| private Integer id;
|
| private String name;
|
| /**
| * 父级ID
| */
| private Integer parentId;
|
| /**
| * 子级数据
| */
| private List<DepartmentResponseVM> children;
|
| private String special;
|
| private Integer level;
|
| /**
| * 管理员
| */
| private List<Integer> adminIds;
| private List<String> adminNames;
|
| }
|
|