mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 05:02:57 +00:00
添加ImportUtil工具类用于自动发现SQLAlchemy模型 优化alembic迁移脚本生成逻辑,避免空变更生成 修复前端模板中的按钮标签错误 简化revision命令参数
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
岗位模型模块
|
|
定义岗位相关数据模型
|
|
"""
|
|
|
|
from typing import TYPE_CHECKING, List
|
|
|
|
from sqlalchemy import Boolean, String, Integer
|
|
from sqlalchemy.orm import relationship, Mapped, mapped_column
|
|
|
|
from app.core.base_model import CreatorMixin
|
|
|
|
if TYPE_CHECKING:
|
|
from app.api.v1.module_system.user.model import UserModel
|
|
|
|
|
|
class PositionModel(CreatorMixin):
|
|
"""
|
|
岗位模型
|
|
"""
|
|
__tablename__ = "system_position"
|
|
__table_args__ = ({'comment': '岗位表'})
|
|
__loader_options__ = ["creator"]
|
|
|
|
name: Mapped[str] = mapped_column(String(40), nullable=False, unique=True, comment="岗位名称")
|
|
order: Mapped[int] = mapped_column(Integer, nullable=False, default=1, comment="显示排序")
|
|
status: Mapped[bool] = mapped_column(Boolean(), default=True, nullable=False, comment="是否启用(True:启用 False:禁用)")
|
|
|
|
# 用户关联关系
|
|
users: Mapped[List["UserModel"]] = relationship(secondary="system_user_positions", back_populates="positions", lazy="selectin")
|
|
|
|
|