mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-28 07:19:40 +08:00
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
||
"schema": {
|
||
"bsonType": "object",
|
||
"required": [
|
||
"name",
|
||
"url"
|
||
],
|
||
"properties": {
|
||
"_id": {
|
||
"description": "存储文档 ID,系统自动生成"
|
||
},
|
||
"name": {
|
||
"bsonType": "string",
|
||
"description": "菜单名称"
|
||
},
|
||
"icon": {
|
||
"bsonType": "string",
|
||
"description": "菜单图标"
|
||
},
|
||
"url": {
|
||
"bsonType": "string",
|
||
"description": "菜单url"
|
||
},
|
||
"sort": {
|
||
"bsonType": "int",
|
||
"description": "菜单序号(越大越靠后)"
|
||
},
|
||
"parent_id": {
|
||
"bsonType": "string",
|
||
"description": "父级菜单Id"
|
||
},
|
||
"permission": {
|
||
"bsonType": "array",
|
||
"description": "菜单权限列表"
|
||
},
|
||
"status": {
|
||
"bsonType": "string",
|
||
"description": "菜单状态0禁用、1启用"
|
||
},
|
||
"create_date": {
|
||
"bsonType": "timestamp",
|
||
"description": "菜单创建时间"
|
||
}
|
||
}
|
||
},
|
||
"index": [
|
||
{
|
||
"IndexName": "permission",
|
||
"MgoKeySchema": {
|
||
"MgoIndexKeys": [
|
||
{
|
||
"Name": "permission",
|
||
"Direction": "1"
|
||
}
|
||
],
|
||
"MgoIsUnique": false
|
||
}
|
||
}
|
||
]
|
||
} |