## 获取设备分组
**简要描述:**
* 获取设备分组
**请求URL:**
* /deviceGroup/list
**请求方式:**
* GET
**参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| page | 否 | number | 分页查询页码 默认 1 |
| pageSize | 否 | number | 分页查询每页数量 默认 10 |
**返回参数说明**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| list | array | 数据列表 |
| total | number | 总数量 |
| currentPage | number | 当前页 |
| totalPage | number | 总页数 |
| pageSize | number | 每页数量 |
| deviceGroupName| String | 设备分组名称 |
| deviceGroupId| number | 设备分组id |
**返回示例**
~~~
{
"code": 0,
"message": "请求成功",
"data": {
"list": [
{
"deviceGroupName": "办公室",
"deviceGroupId": 1,
"deviceList": [
{
"deviceId": "2E0055000351383232363638",
"deviceName": 1,
"enable": 0,
"online": 0
}
]
}
],
"total": 1,
"currentPage": 1,
"totalPage": 1,
"pageSize": 10,
"keyword": null
}
}
~~~