uni-stat-app-platforms.schema.json 962 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
// 应用平台表
{
	"bsonType": "object",
	"description": "提供应用的平台字典",
	"required": [],
	"permission": {
		"read": "'READ_UNI_STAT_APP_PLATFORMS' in auth.permission",
		"create": false,
		"update": false,
		"delete": false
	},
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
		},
		"code": {
			"bsonType": "string",
			"description": "平台代码,前端上报"
		},
		"name": {
			"bsonType": "string",
			"description": "平台名称,管理端显示"
		},
		"order": {
			"bsonType": "int",
			"description": "序号,前端页面排序使用",
			"defaultValue": 0
		},
		"enable": {
			"bsonType": "bool",
			"description": "是否启动",
			"defaultValue": true,
			"enum": [{
				"text": "否",
				"value": false
			}, {
				"text": "是",
				"value": true
			}]
		},
		"create_time": {
			"bsonType": "timestamp",
			"description": "创建时间"
		}
	}
}