mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 21:15:13 +00:00
* define the basic architecture * Update script and deployment file locations * Update the route registration * Fix CI download dependencies * Updated ruff to 0.3.3 * Update app subdirectory naming * Update the model import * fix pre-commit pdm lock * Update the service directory naming * Add CRUD method documents * Fix the issue of circular import * Update the README document * Update the SQL statement for create tables * Update docker scripts and documentation * Fix docker scripts * Update the backend README.md * Add the security folder and move the redis client * Update the configuration item * Fix environment configuration reads * Update the default configuration * Updated README description * Updated the user registration API * Fix test cases * Update the celery configuration * Update and fix celery configuration * Updated the celery structure * Update celery tasks and api * Add celery flower * Update the import style * Update contributors
42 lines
2.1 KiB
Python
42 lines
2.1 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from typing import Union
|
|
|
|
from sqlalchemy import ForeignKey, String
|
|
from sqlalchemy.dialects.mysql import LONGTEXT
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
from backend.app.admin.model.sys_role_menu import sys_role_menu
|
|
from backend.common.msd.model import Base, id_key
|
|
|
|
|
|
class Menu(Base):
|
|
"""菜单表"""
|
|
|
|
__tablename__ = 'sys_menu'
|
|
|
|
id: Mapped[id_key] = mapped_column(init=False)
|
|
title: Mapped[str] = mapped_column(String(50), comment='菜单标题')
|
|
name: Mapped[str] = mapped_column(String(50), comment='菜单名称')
|
|
level: Mapped[int] = mapped_column(default=0, comment='菜单层级')
|
|
sort: Mapped[int] = mapped_column(default=0, comment='排序')
|
|
icon: Mapped[str | None] = mapped_column(String(100), default=None, comment='菜单图标')
|
|
path: Mapped[str | None] = mapped_column(String(200), default=None, comment='路由地址')
|
|
menu_type: Mapped[int] = mapped_column(default=0, comment='菜单类型(0目录 1菜单 2按钮)')
|
|
component: Mapped[str | None] = mapped_column(String(255), default=None, comment='组件路径')
|
|
perms: Mapped[str | None] = mapped_column(String(100), default=None, comment='权限标识')
|
|
status: Mapped[int] = mapped_column(default=1, comment='菜单状态(0停用 1正常)')
|
|
show: Mapped[int] = mapped_column(default=1, comment='是否显示(0否 1是)')
|
|
cache: Mapped[int] = mapped_column(default=1, comment='是否缓存(0否 1是)')
|
|
remark: Mapped[str | None] = mapped_column(LONGTEXT, default=None, comment='备注')
|
|
# 父级菜单一对多
|
|
parent_id: Mapped[int | None] = mapped_column(
|
|
ForeignKey('sys_menu.id', ondelete='SET NULL'), default=None, index=True, comment='父菜单ID'
|
|
)
|
|
parent: Mapped[Union['Menu', None]] = relationship(init=False, back_populates='children', remote_side=[id])
|
|
children: Mapped[list['Menu'] | None] = relationship(init=False, back_populates='parent')
|
|
# 菜单角色多对多
|
|
roles: Mapped[list['Role']] = relationship( # noqa: F821
|
|
init=False, secondary=sys_role_menu, back_populates='menus'
|
|
)
|