Files
mht.js/uniCloud-aliyun/database/uni-stat-app-platforms.schema.json
2025-10-22 07:50:31 +08:00

47 lines
916 B
JSON
Raw Permalink 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.

// 应用平台表
{
"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": "创建时间"
}
}
}