## 权限组获取
~~~[api]
post:/api/Common/getSystemAuthGroup.json
int:type#用户类型
int:limit=20#每页数据条数
int:page=1#页码
<<<
success
{
"status": "success",
"msg": "获取成功",
"result": [{
"group_id": 1,
"group_type": "1",
"group_name": "超级管理员"
}],
"page": {
"count": 1,
"current": 1,
"limit": 20,
"total": 1
}
}
~~~
#### 字段列表
| 字段名 | 说明 |
| --- | --- |
| group_id | 权限组ID |
| group_type | 用户类型 |
| group_name | 权限组名称 |