mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 12:52:26 +00:00
1. 迁移存储模块功能到工作流模块,合并冗余代码 2. 调整环境配置加载路径与初始化脚本目录 3. 更新文档与前端组件代码适配重构 4. 新增工作流相关CRUD、模型与迁移文件 5. 移除过期模块与冗余代码,优化日志配置
26 lines
580 B
JSON
26 lines
580 B
JSON
[
|
|
{
|
|
"name": "超级管理员",
|
|
"code": "SUPER_ADMIN",
|
|
"status": 0,
|
|
"order": 1,
|
|
"data_scope": 3,
|
|
"description": "拥有系统最高权限"
|
|
},
|
|
{
|
|
"name": "管理员",
|
|
"code": "ADMIN",
|
|
"status": 0,
|
|
"order": 2,
|
|
"data_scope": 3,
|
|
"description": "管理系统内所有资源"
|
|
},
|
|
{
|
|
"name": "普通用户",
|
|
"code": "USER",
|
|
"status": 0,
|
|
"order": 3,
|
|
"data_scope": 1,
|
|
"description": "仅能查看和操作自己的数据"
|
|
}
|
|
] |