unified_dashboard/models/dashboard_config.json

100 lines
2.5 KiB
JSON

{
"summary": [
{
"name": "dashboard_config",
"title": "仪表板配置",
"primary": "id",
"catelog": "entity"
}
],
"fields": [
{
"name": "id",
"title": "ID",
"type": "str",
"length": 32,
"nullable": false,
"comments": "主键UUID"
},
{
"name": "dashboard_name",
"title": "仪表板名称",
"type": "str",
"length": 100,
"nullable": false,
"comments": "仪表板显示名称"
},
{
"name": "dashboard_type",
"title": "仪表板类型",
"type": "str",
"length": 50,
"nullable": false,
"comments": "sales/finance/customer/executive"
},
{
"name": "config_json",
"title": "配置JSON",
"type": "str",
"length": 2000,
"nullable": false,
"comments": "仪表板布局和组件配置"
},
{
"name": "is_default",
"title": "是否默认",
"type": "str",
"length": 1,
"nullable": false,
"comments": "Y/N"
},
{
"name": "org_id",
"title": "组织ID",
"type": "str",
"length": 32,
"nullable": false,
"comments": "多租户组织隔离"
},
{
"name": "created_by",
"title": "创建人",
"type": "str",
"length": 32,
"nullable": false,
"comments": "创建用户ID"
},
{
"name": "created_at",
"title": "创建时间",
"type": "timestamp",
"nullable": false,
"comments": "创建时间"
}
],
"indexes": [
{
"name": "idx_dashboard_org",
"idxtype": "index",
"idxfields": [
"org_id"
]
},
{
"name": "idx_dashboard_type",
"idxtype": "index",
"idxfields": [
"dashboard_type"
]
},
{
"name": "uk_dashboard_name_org",
"idxtype": "unique",
"idxfields": [
"dashboard_name",
"org_id"
]
}
],
"codes": []
}