Files
im-system/uni-im示例/uni_modules/uni-im/uniCloud/database/uni-im-task.schema.json
2023-09-24 17:55:19 +08:00

28 lines
560 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType": "object",
"required": [],
"permission": {
"read": true, //暂时就撤回消息任务,不做限制。后续在触发器内做相关限制
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"type": {
"description": "任务名称"
},
"user_id": {
"description": "接收任务的用户id"
},
"group_id": {
"description": "接收任务的群id"
},
"payload":{
}
}
}