mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
add opendb-admin-log
This commit is contained in:
parent
0d83324a46
commit
c48ebb4f4d
38
collection/opendb-admin-log/collection.json
Normal file
38
collection/opendb-admin-log/collection.json
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
"schema": {
|
||||||
|
"bsonType": "object",
|
||||||
|
"required": ["user_id","content"],
|
||||||
|
"permission": {
|
||||||
|
"read": false,
|
||||||
|
"create": false,
|
||||||
|
"update": false,
|
||||||
|
"delete": false
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"_id": {
|
||||||
|
"description": "ID,系统自动生成"
|
||||||
|
},
|
||||||
|
"user_id": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "用户id,参考uni-id-users表"
|
||||||
|
},
|
||||||
|
"user_name": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "用户名或昵称,冗余设计"
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "日志内容,如:修改密码"
|
||||||
|
},
|
||||||
|
"ip": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "ip地址"
|
||||||
|
},
|
||||||
|
"create_date": {
|
||||||
|
"bsonType": "timestamp",
|
||||||
|
"description": "创建时间"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"index": []
|
||||||
|
}
|
17
collection/opendb-admin-log/package.json
Normal file
17
collection/opendb-admin-log/package.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "@opendb/opendb-admin-log",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "通用系统日志",
|
||||||
|
"keywords": ["日志"],
|
||||||
|
"opendb": {
|
||||||
|
"title": "系统日志",
|
||||||
|
"type": "collection",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "CHB",
|
||||||
|
"email": "",
|
||||||
|
"homepage": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
{
|
{
|
||||||
"opendb-admin-menus": {}
|
"opendb-admin-menus": {},
|
||||||
|
"opendb-admin-log":{}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user