mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 05:02:57 +00:00
- 修改alembic配置以使用异步数据库URI和更新Base类引用 - 新增数据库Schema优化脚本,统一字段长度,添加索引,规范外键策略 - 重构API路由管理,按模块类型分组并统一前缀 - 删除示例、监控及系统各子模块的模型定义,减少冗余代码 - 将mcp_server相关代码迁移到module_ai模块下,规范模块目录结构 - 迁移example控制器至module_application.application模块,并重命名相关服务和参数名 - 优化示例控制器中的依赖和响应结构,统一命名规范
86 lines
2.8 KiB
Python
86 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
角色模型模块
|
|
定义角色相关数据模型和关联表
|
|
"""
|
|
|
|
from typing import Optional, List
|
|
|
|
from sqlalchemy import String, Integer, ForeignKey
|
|
from sqlalchemy.orm import relationship, Mapped, mapped_column
|
|
|
|
from app.core.base_model import MappedBase, CreatorMixin
|
|
from app.api.v1.module_system.dept.model import DeptModel
|
|
from app.api.v1.module_system.menu.model import MenuModel
|
|
|
|
|
|
class RoleMenusModel(MappedBase):
|
|
"""
|
|
角色菜单关联表
|
|
|
|
定义角色与菜单的多对多关系,用于权限控制
|
|
"""
|
|
__tablename__ = "system_role_menus"
|
|
__table_args__ = ({'comment': '角色菜单关联表'})
|
|
|
|
role_id: Mapped[int] = mapped_column(
|
|
Integer,
|
|
ForeignKey("system_role.id", ondelete="CASCADE", onupdate="CASCADE"),
|
|
primary_key=True,
|
|
comment="角色ID"
|
|
)
|
|
menu_id: Mapped[int] = mapped_column(
|
|
Integer,
|
|
ForeignKey("system_menu.id", ondelete="CASCADE", onupdate="CASCADE"),
|
|
primary_key=True,
|
|
comment="菜单ID"
|
|
)
|
|
|
|
|
|
class RoleDeptsModel(MappedBase):
|
|
"""
|
|
角色部门关联表
|
|
|
|
定义角色与部门的多对多关系,用于数据权限控制
|
|
"""
|
|
__tablename__ = "system_role_depts"
|
|
__table_args__ = ({'comment': '角色部门关联表'})
|
|
|
|
role_id: Mapped[int] = mapped_column(
|
|
Integer,
|
|
ForeignKey("system_role.id", ondelete="CASCADE", onupdate="CASCADE"),
|
|
primary_key=True,
|
|
comment="角色ID"
|
|
)
|
|
dept_id: Mapped[int] = mapped_column(
|
|
Integer,
|
|
ForeignKey("system_dept.id", ondelete="CASCADE", onupdate="CASCADE"),
|
|
primary_key=True,
|
|
comment="部门ID"
|
|
)
|
|
|
|
|
|
class RoleModel(CreatorMixin):
|
|
"""
|
|
角色模型
|
|
|
|
data_scope 数据权限范围:
|
|
- 1: 仅本人数据权限
|
|
- 2: 本部门数据权限
|
|
- 3: 本部门及以下数据权限
|
|
- 4: 全部数据权限
|
|
- 5: 自定义数据权限
|
|
"""
|
|
__tablename__ = "system_role"
|
|
__table_args__ = ({'comment': '角色表'})
|
|
|
|
name: Mapped[str] = mapped_column(String(40), nullable=False, unique=True, comment="角色名称")
|
|
code: Mapped[Optional[str]] = mapped_column(String(20), nullable=True, unique=True, comment="角色编码")
|
|
order: Mapped[int] = mapped_column(Integer, nullable=False, default=999, comment="显示排序")
|
|
data_scope: Mapped[int] = mapped_column(Integer, nullable=False, default=1, comment="数据权限范围")
|
|
|
|
menus: Mapped[List["MenuModel"]] = relationship(secondary="system_role_menus", back_populates="roles", lazy="select")
|
|
depts: Mapped[List["DeptModel"]] = relationship(secondary="system_role_depts", back_populates="roles", lazy="select")
|
|
users: Mapped[List["UserModel"]] = relationship(secondary="system_user_roles", back_populates="roles", lazy="select")
|
|
|