opendb-feedback.schema.json 1.4 KB
Newer Older
L
2  
linju 已提交
1 2 3
{
	"bsonType": "object",
	"permission": {
芊里 已提交
4
		"read": "!doc.is_reply",
L
2  
linju 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
		"create": true,
		"update": false,
		"delete": false
	},
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
		},
		"user_id": {
			"bsonType": "string",
			"description": "留言反馈用户ID\/回复留言用户ID,参考uni-id-users表",
			"foreignKey": "uni-id-users._id",
			"forceDefaultValue": {
				"$env": "uid"
			}
芊里 已提交
20 21 22
		},
		"title":{
			"description": "反馈标题(用于列表展示)"
L
2  
linju 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
		},
		"ip": {
			"forceDefaultValue": {
				"$env": "clientIP"
			}
		},
		"create_date": {
			"bsonType": "timestamp",
			"description": "留言时间\/回复留言时间",
			"forceDefaultValue": {
				"$env": "now"
			}
		},
		"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": "被回复条数"
		}
	}
}