Files
FastapiAdmin/backend/app/api/v1/module_system/role/model.py
T
zhangtao e159b31e62 feat: Add role code to system_role.json and update system_users.json creator_id to null
fix: Refactor initialize.py to handle nested children data during initialization

feat: Implement tree structure traversal functions in common_util.py

chore: Update requirements.txt to specify sqlalchemy-crud-plus version and add rich

refactor: Change API endpoints in dept.ts and menu.ts to return tree structure

feat: Add code field to role, dept, and menu interfaces in respective TypeScript files

fix: Update dept and role Vue components to display and handle code field

docs: Add comprehensive project documentation for FastAPI Vue3 Admin
2025-09-15 00:19:11 +08:00

84 lines
2.7 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
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="selectin")
depts: Mapped[List["DeptModel"]] = relationship(secondary="system_role_depts", back_populates="roles", lazy="selectin")
users: Mapped[List["UserModel"]] = relationship(secondary="system_user_roles", back_populates="roles", lazy="selectin")