Files
FastapiAdmin/backend/app/api/v1/models/system/dept_model.py
T
zhangtao 00b7fe54ba feat: 添加任务管理和字典管理功能,优化系统配置和代码结构
本次提交主要包含以下变更:
1. 新增任务管理模块,支持定时任务的创建、更新、删除和状态管理
2. 新增字典管理模块,用于维护系统中常用的固定数据
3. 优化系统配置,移除Celery,改用APScheduler进行任务调度
4. 修复部分前端组件的样式问题,统一输入框宽度
5. 更新文档和相关图片资源,完善系统功能描述

这些变更旨在增强系统的可维护性和功能性,提供更灵活的任务调度机制和更便捷的字典数据管理方式。
2025-04-12 06:43:27 +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
)
# 状态字段
available = 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='更新时间')