添加菜单
开发中POST
http://localhost:8098/admin/menu添加菜单。
请求参数
Body 参数application/json
displayName
string
菜单名
<= 128 字符
isMain
boolean | null
是否为主菜单
如果是第一个菜单,则默认为 true
默认值:
false
示例
{
"displayName": "string",
"isMain": "false"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
errMsg
null
必需
data
object
必需
menuId
integer
菜单 ID
isMain
boolean
是否为主菜单
displayName
string
菜单名
createTime
integer
创建时间戳
示例
添加成功
{
"code": 200,
"errMsg": null,
"data": {
"menuId": 2,
"isMain": false,
"displayName": "装县不地思",
"createTime": 1709477892586
}
}
最后修改时间: 8 个月前