5、获取属性分组详情 websocket测试 GET /product/attrgroup/info/{attrGroupId} 接口描述 传入attrGroupId,获取其对应的属性详情 响应参数 application/json 参数名 类型 描述 必填 code int 0—响应成功,其他—响应失败 必填 msg string 提示信息 必填 attrGroup object 数据字典 必填 attrGroupId int 示例:分组id 必填 attrGroupName string 组名 必填 sort int 示例:排序 必填 descript object 描述 必填 icon object 组图标 必填 catelogId int 所属分类id 必填 catelogPath array 对应的完整分组ID路径 必填 说明 / 示例 ```json { "code": 0, "msg": "success", "attrGroup": { "attrGroupId": 1, "attrGroupName": "主体", "sort": 0, "descript": null, "icon": null, "catelogId": 225, "catelogPath": [ 2, 34, 225 ] //完整分类路径 } } ```
```json { "code": 0, "msg": "success", "attrGroup": { "attrGroupId": 1, "attrGroupName": "主体", "sort": 0, "descript": null, "icon": null, "catelogId": 225, "catelogPath": [ 2, 34, 225 ] //完整分类路径 } } ```