mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
- 在myapp模块的ApplicationModel中新增status字段,标识应用是否启用 - 在demo模块的DemoModel中新增status字段,标识示例条目是否启用 - 修改代码生成模块相关模型,替换BaseMixin为CreatorMixin - 删除代码生成模块中Python模板相关文件与Vue前端代码模板,优化代码结构和清理无用模板文件
30 lines
916 B
Python
30 lines
916 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
岗位模型模块
|
|
定义岗位相关数据模型
|
|
"""
|
|
|
|
from typing import List
|
|
|
|
from sqlalchemy import Boolean, String, Integer
|
|
from sqlalchemy.orm import relationship, Mapped, mapped_column
|
|
|
|
from app.core.base_model import CreatorMixin
|
|
|
|
|
|
class PositionModel(CreatorMixin):
|
|
"""
|
|
岗位模型
|
|
"""
|
|
__tablename__ = "system_position"
|
|
__table_args__ = ({'comment': '岗位表'})
|
|
|
|
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")
|
|
|
|
|