adminMenu - TimYi/FengHuang GitHub Wiki

请求URL

http://101.200.229.135:8080/api/admin/menu

字段说明

字段分为显示和保存两部分。
保存字段会有一些关联实体的id,显示字段会把一些关联实体的内容扁平化显示。

显示字段

id:id
name:栏目名
description:栏目描述
sons:子栏目列表
type:栏目类型 {
    id:类型id
    name:类型名称
    type:类别所属分类
}        

传参字段

id:id
name:栏目名
description:栏目描述
fatherid:父栏目id
typeid:类别id,详见字典列表接口——column

返回参数

{
"result": {
    "totalCount": 1,
    "totalPages": 1,
    "page": 0,
    "size": 8,
    "result": [
        {
            "id": "404040e64d8f7405014d8f740fb40000",
            "name": "test",
            "description": null,
            "sons": [],
            "type": {
                "id": "404040e64d8f6dc0014d8f6dcf520007",
                "name": "product",
                "attr": null,
                "attr2": null,
                "type": "column"
            }
        }
    ]
},
"status": "OK"
}