**1\. 查询菜单组** ###### 接口功能 > 查询菜单组接口 ###### URL > [http://api.java110.com:8008/api/menuGroup.listMenuGroups](http://api.java110.com:8008/api/menuGroup.listMenuGroups) ###### 支持格式 > JSON ###### HTTP请求方式 > GET ###### 请求参数(header部分) |参数名称|约束|类型|长度|描述|取值说明| | :-: | :-: | :-: | :-: | :-: | :-:| |app_id|1|String|30|应用ID|Api服务分配 | |transaction_id|1|String|30|请求流水号|不能重复 1000000000+YYYYMMDDhhmmss+6位序列 | |sign|1|String|-|签名|请参考签名说明| |req_time|1|String|-|请求时间|YYYYMMDDhhmmss| ###### 请求参数(url部分) |参数名称|约束|类型|长度|描述|取值说明| | :-: | :-: | :-: | :-: | :-: | :-: | |page|-|-|-|当前页|-| |row|-|-|-|每页显示的行数|-| ###### 返回协议 当http返回状态不为200 时请求处理失败 body内容为失败的原因 当http返回状态为200时请求处理成功,body内容为返回内容, |父参数名称|参数名称|约束|类型|长度|描述|取值说明| | :-: | :-: | :-: | :-: | :-: | :-: | :-: | |-|-|-|-|-|-|-| ###### 举例 > 地址:[http://api.java110.com:8008/api/menuGroup.listMenuGroups?page=1&row=10](http://api.java110.com:8008/api/menuGroup.listMenuGroups?page=1&row=10) ``` javascript 请求头信息: Content-Type:application/json USER_ID:1234 APP_ID:8000418002 TRANSACTION_ID:10029082726 REQ_TIME:20181113225612 SIGN:aabdncdhdbd878sbdudn898 请求报文: 无 返回报文: { "menuGroups": [{ "description": "", "gId": "802019110855900043", "icon": "fa fa-globe", "label": "NEW", "name": "设备管理", "seq": "10" },{ "description": "DEMO管理", "gId": "800201906012", "icon": "fa-flask", "label": "", "name": "DEMO管理", "seq": "12" }], "page": 0, "records": 4, "rows": 0, "total": 32 } ```