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
| /**
| * @api {POST} localhost:89/catalogs/catalogs/catalogList 目录树
| * @apiGroup 目录树
| *
| * @apiSuccessExample {json} Response-Example
| * {
| * {
| "code": 200,
| "success": true,
| "data": [
| {
| "id": 1,
| "name": "医院",
| "pid": 0,
| "eqid": ""
| },
| {
| "id": 2,
| "name": "学校",
| "pid": 0,
| "eqid": ""
| },
| {
| "id": 3,
| "name": "一号楼",
| "pid": 1,
| "eqid": ""
| },
| {
| "id": 4,
| "name": "二号楼",
| "pid": 1,
| "eqid": ""
| }
| ],
| "msg": "操作成功"
| }
| * }
| */
|
|