mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
add opendb-notice
This commit is contained in:
parent
274e5897ac
commit
2e8c42b2c2
52
collection/opendb-notice/collection.json
Normal file
52
collection/opendb-notice/collection.json
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
"schema": {
|
||||||
|
"bsonType": "object",
|
||||||
|
"permission": {
|
||||||
|
"create": false,
|
||||||
|
"delete": false,
|
||||||
|
"read": true,
|
||||||
|
"update": false
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"data"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"_id": {
|
||||||
|
"description": "ID,系统自动生成",
|
||||||
|
"foreignKey": "comment.notice_id"
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "内容数据",
|
||||||
|
"label": "内容数据",
|
||||||
|
"maxLength": 32,
|
||||||
|
"errorMessage": {
|
||||||
|
"maxLength": "{label}不能大于{maxLength}个字符"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"view_count": {
|
||||||
|
"bsonType": "int",
|
||||||
|
"title": "阅读数量",
|
||||||
|
"description": "阅读数量",
|
||||||
|
"permission": {
|
||||||
|
"write": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"create_time": {
|
||||||
|
"description": "创建时间",
|
||||||
|
"bsonType": "timestamp",
|
||||||
|
"forceDefaultValue": {
|
||||||
|
"$env": "now"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"update_time": {
|
||||||
|
"description": "更新时间",
|
||||||
|
"bsonType": "timestamp",
|
||||||
|
"forceDefaultValue": {
|
||||||
|
"$env": "now"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"index": []
|
||||||
|
}
|
17
collection/opendb-notice/package.json
Normal file
17
collection/opendb-notice/package.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "@opendb/opendb-notice",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "opendb-notice",
|
||||||
|
"keywords": ["通知"],
|
||||||
|
"opendb": {
|
||||||
|
"title": "通知",
|
||||||
|
"type": "collection",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "DCloud_JSON",
|
||||||
|
"email": "",
|
||||||
|
"homepage": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user