mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
||
"schema": {
|
||
"bsonType": "object",
|
||
"required": ["user_id", "content"],
|
||
"properties": {
|
||
"_id": {
|
||
"description": "ID,系统自动生成"
|
||
},
|
||
"user_id": {
|
||
"bsonType": "string",
|
||
"description": "留言反馈用户ID/回复留言用户ID,参考uni-id-users表",
|
||
"foreignKey":"uni-id-users._id"
|
||
},
|
||
"create_date": {
|
||
"bsonType": "timestamp",
|
||
"description": "留言时间/回复留言时间"
|
||
},
|
||
"content": {
|
||
"bsonType": "string",
|
||
"description": "留言内容/回复内容",
|
||
"trim":"right"
|
||
},
|
||
"imgs": {
|
||
"bsonType": "array",
|
||
"description": "图片列表"
|
||
},
|
||
"is_reply": {
|
||
"bsonType": "bool",
|
||
"description": "是否是回复类型"
|
||
},
|
||
"feedback_id": {
|
||
"bsonType": "string",
|
||
"description": "被回复留言ID"
|
||
},
|
||
"contact": {
|
||
"bsonType": "string",
|
||
"description": "联系人",
|
||
"trim":"both"
|
||
},
|
||
"mobile": {
|
||
"bsonType": "string",
|
||
"description": "联系电话",
|
||
"trim":"both"
|
||
},
|
||
"reply_count": {
|
||
"bsonType": "int",
|
||
"description": "被回复条数"
|
||
}
|
||
}
|
||
},
|
||
"index": [{
|
||
"IndexName": "_user_id",
|
||
"MgoKeySchema": {
|
||
"MgoIndexKeys": [{
|
||
"Name": "user_id",
|
||
"Direction": "1"
|
||
}],
|
||
"MgoIsUnique": false
|
||
}
|
||
}
|
||
]
|
||
}
|