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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| export interface FixtureTypeVO {
| /**
| * 类型id
| */
| id: number | string;
|
| /**
| * 类型名称
| */
| typeName: string;
|
| /**
| * 类型编码
| */
| typeCode: string;
|
| /**
| * 父id
| */
| parentId: number | string;
|
| /**
| * 显示顺序
| */
| orderNum: number;
|
| /**
| * 菜单类型(M目录 C菜单 F按钮)
| */
| menuType: string;
|
| /**
| * 菜单图标
| */
| icon: string;
|
| /**
| * 菜单状态(0正常 1停用)
| */
| status: string;
|
| /**
| * 备注
| */
| remark: string;
|
| /**
| * 子对象
| */
| children: FixtureTypeVO[];
| }
|
| /**
| * @description: 设备类型树
| */
| export interface FixtureTypeTree {
| id: number;
| /**
| * antd组件必须要这个属性 实际是没有这个属性的
| */
| key: string;
| parentId: number;
| label: string;
| weight: number;
| children?: FixtureTypeTree[];
| }
|
|