## 獲取設備分組
**簡要描述:**
* 獲取設備分組
**請求URL:**
* /auth/list
**請求方式:**
* GET
**參數:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
**返回參數說明**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| list | array | 數據列表 |
| total | number | 總數量 |
| currentPage | number | 當前頁 |
| totalPage | number | 總頁數 |
| pageSize | number | 每頁數量 |
| groupIdList| array | 設備分組id |
| deviceIdList| array | 設備id |
**返回示例**
~~~
{
"code": 0,
"message": "請求成功",
"data": {
"list": [
{
"userId": 1,
"username": "辦公室",
"groupIdList": [
{
"deviceGroupId": "1",
"deviceGroupName": "1"
}
],
"deviceIdList": [
{
"deviceId": "1",
"deviceName": "1"
}
]
}
],
"total": 1,
"currentPage": 1,
"totalPage": 1,
"pageSize": 10,
"keyword": null
}
}
~~~