Files
FastapiAdmin/backend/sql/data/sys_user.json
T
zhangtao 53c8f67bd5 refactor: 移除多租户相关逻辑并清理冗余代码
本次提交完成以下主要变更:
1.  删除所有租户相关的初始化数据、配置和工具代码
2.  移除TicketModel的租户关联字段与校验逻辑
3.  重构菜单表名与关联外键,统一为sys_前缀
4.  为岗位、部门、工作流等模型添加唯一约束
5.  调整导入顺序与冗余代码,优化代码结构
6.  移除支付、PDF生成相关的依赖与工具类
7.  简化OpenAPI文档标签配置
8.  清理无效的枚举与冗余导入
2026-07-17 01:07:17 +08:00

62 lines
2.0 KiB
JSON

[
{
"username": "super",
"password": "$pbkdf2-sha256$600000$XX20aO1v73xS0JnoewXNtw==$PEaVHV1N5L7PfYQw2lCAQOc4hAEyCiwsGR48/jgVBjU=",
"name": "超级管理员",
"mobile": "13800138000",
"email": "super@example.com",
"gender": "0",
"avatar": "https://service.fastapiadmin.com/api/v1/static/image/avatar.png",
"is_superuser": true,
"last_login": null,
"gitee_login": null,
"github_login": null,
"wx_login": null,
"qq_login": null,
"dept_id": 1,
"status": 0,
"description": "系统超级管理员",
"created_id": null,
"updated_id": null
},
{
"username": "admin",
"password": "$pbkdf2-sha256$600000$XX20aO1v73xS0JnoewXNtw==$PEaVHV1N5L7PfYQw2lCAQOc4hAEyCiwsGR48/jgVBjU=",
"name": "管理员",
"mobile": "13800138001",
"email": "admin@example.com",
"gender": "0",
"avatar": "https://service.fastapiadmin.com/api/v1/static/image/avatar.png",
"is_superuser": true,
"last_login": null,
"gitee_login": null,
"github_login": null,
"wx_login": null,
"qq_login": null,
"dept_id": 1,
"status": 0,
"description": "系统管理员",
"created_id": 1,
"updated_id": null
},
{
"username": "user",
"password": "$pbkdf2-sha256$600000$XX20aO1v73xS0JnoewXNtw==$PEaVHV1N5L7PfYQw2lCAQOc4hAEyCiwsGR48/jgVBjU=",
"name": "普通用户",
"mobile": "13800138002",
"email": "user@example.com",
"gender": "0",
"avatar": "https://service.fastapiadmin.com/api/v1/static/image/avatar.png",
"is_superuser": false,
"last_login": null,
"gitee_login": null,
"github_login": null,
"wx_login": null,
"qq_login": null,
"dept_id": 1,
"status": 0,
"description": "普通用户",
"created_id": 1,
"updated_id": null
}
]