mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2025-08-18 15:00:46 +08:00

* WIP: add rbac authorization * Perform pre-commit fixes * add rbac route whitelist * add init test data user role associations * Restore database table id naming to fix generic crud base * Add database section value uniqueness settings * Update the test directory to tests * Update route_name file name to health_check * Split user auth and user action interfaces * Fix conflict between merge and current branch * Add pymysql dependencies * Fix RBAC authentication method * Add the select serialisation tool * Fix missing return messages due to global exception handler slicing * Update the user interface with associated relationships * Add items to be completed * Perform pre-commit fixes * Add pre-made routers * Paging data return structure optimisation * Split user auth and user interface tests * Fix user register test data structure error * Fix duplicate named test classes
26 lines
1.2 KiB
Python
26 lines
1.2 KiB
Python
#!/usr/bin/env python3
|
||
# -*- coding: utf-8 -*-
|
||
from sqlalchemy import String
|
||
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
||
|
||
from backend.app.database.base_class import Base, id_key
|
||
|
||
|
||
class Dept(Base):
|
||
"""部门表"""
|
||
|
||
__tablename__ = 'sys_dept'
|
||
|
||
id: Mapped[id_key] = mapped_column(init=False)
|
||
name: Mapped[str] = mapped_column(String(50), unique=True, comment='部门名称')
|
||
parent_id: Mapped[int] = mapped_column(default=0, comment='父部门ID')
|
||
level: Mapped[int] = mapped_column(default=0, comment='部门层级')
|
||
sort: Mapped[int] = mapped_column(default=0, comment='排序')
|
||
leader: Mapped[str | None] = mapped_column(String(20), default=None, comment='负责人')
|
||
phone: Mapped[str | None] = mapped_column(String(11), default=None, comment='手机')
|
||
email: Mapped[str | None] = mapped_column(String(50), default=None, comment='邮箱')
|
||
status: Mapped[bool] = mapped_column(default=True, comment='部门状态(0停用 1正常)')
|
||
del_flag: Mapped[bool] = mapped_column(default=True, comment='删除标志(0删除 1存在)')
|
||
# 用户部门一对多
|
||
users: Mapped['User'] = relationship(init=False, back_populates='dept') # noqa: F821
|