响应参数
参数名
类型
描述
必填
Status
number
请求成功或失败, 0失败 1成功
必填
Data
array<object>
统计数据集合
必填
Children
array<object>
下级电表数组
可选
说明 / 示例
```
Status:1,
Msg:"请求成功",
Data:[
{
name: "电表1",
id: "1",
children: [
{
name: "电表1-1",
id: "1-1",
children: [
{
name: "电表1-1-1",
id: "1-1-1",
children: []
}
]
},
]
},
{
name: "电表2",
id: "2",
children: [
{
name: "电表2-1",
id: "2-1",
children: [
{
name: "电表2-1-1",
id: "2-1-1",
children: []
}
]
},
]
},
]
```