Files
FastapiAdmin/backend/app/api/v1/models/system/dept_model.py
T
2025-07-13 19:31:23 +08:00

43 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
from datetime import datetime
from sqlalchemy import Boolean, Column, ForeignKey, String, Integer, Text, DateTime
from sqlalchemy.orm import relationship
from app.core.base_model import ModelBase
class DeptModel(ModelBase):
"""
部门表 - 用于存储组织架构中的部门信息
"""
__tablename__ = "system_dept"
__table_args__ = ({'comment': '部门表'})
# 基础字段
id = Column(Integer, primary_key=True, autoincrement=True, comment='主键ID')
name = Column(String(40), nullable=False, comment="部门名称", unique=True)
order = Column(Integer, nullable=False, default=1, comment="显示排序")
# 层级关系
parent_id = Column(
Integer,
ForeignKey("system_dept.id", ondelete="CASCADE", onupdate="CASCADE"),
nullable=True,
index=True,
comment="父级部门ID"
)
parent = relationship(
"DeptModel",
cascade='all, delete-orphan',
uselist=False
)
# 状态字段
status = Column(Boolean, default=True, nullable=False, comment="是否启用(True:启用 False:禁用)")
# 审计字段
description = Column(Text, nullable=True, comment="备注说明")
created_at = Column(DateTime, default=datetime.now, comment='创建时间')
updated_at = Column(DateTime, default=datetime.now, onupdate=datetime.now, comment='更新时间')