mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-27 06:41:12 +00:00
refactor: 重构配置管理相关代码,包括模型、参数和CRUD操作 docs: 更新README文档中的图片引用 style: 统一前端表格样式和布局,优化暗色模式背景色 fix: 修复日志记录中用户信息泄露问题 perf: 优化前端路由和组件性能 chore: 更新依赖和脚本文件 ``` 这个提交消息涵盖了以下主要变更: 1. 新增了配置中心功能模块 2. 重构了后端配置管理相关代码 3. 更新了文档中的图片引用 4. 统一了前端表格样式 5. 修复了安全相关问题 6. 优化了前端性能 7. 更新了项目依赖 消息遵循了约定的提交格式,每个类型都准确地描述了变更的性质,并保持了简洁性。
79 lines
3.1 KiB
Python
79 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from datetime import datetime
|
|
from sqlalchemy import Boolean, Column, DateTime, ForeignKey, Integer, String, Text
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from app.core.base_model import ModelBase
|
|
|
|
|
|
class DictTypeModel(ModelBase):
|
|
"""
|
|
字典类型表
|
|
"""
|
|
|
|
__tablename__ = "system_dict_type"
|
|
__table_args__ = ({'comment': '数据字典类型表'})
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True, comment='字典主键')
|
|
dict_name = Column(String(100), nullable=True, unique=True, default='', comment='字典名称')
|
|
dict_type = Column(String(100), nullable=True, unique=True, default='', comment='字典类型')
|
|
available = Column(Boolean, nullable=True, default='0', comment='状态(0正常 1停用)')
|
|
|
|
# 审计字段
|
|
description = Column(Text, nullable=True, comment="备注说明")
|
|
created_at = Column(DateTime, nullable=True,default=datetime.now, comment='创建时间')
|
|
updated_at = Column(DateTime, nullable=True,default=datetime.now, onupdate=datetime.now, comment='更新时间')
|
|
creator_id = Column(
|
|
Integer,
|
|
ForeignKey("system_users.id", ondelete="SET NULL", onupdate="CASCADE"),
|
|
nullable=True,
|
|
index=True,
|
|
comment="创建人ID"
|
|
)
|
|
creator = relationship(
|
|
"UserModel",
|
|
foreign_keys=creator_id,
|
|
lazy="joined",
|
|
post_update=True,
|
|
uselist=False
|
|
)
|
|
|
|
|
|
class DictDataModel(ModelBase):
|
|
"""
|
|
字典数据表
|
|
"""
|
|
|
|
__tablename__ = 'system_dict_data'
|
|
__table_args__ = ({'comment': '数据字典数据表'})
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True, comment='字典编码')
|
|
dict_sort = Column(Integer, nullable=True, default=0, comment='字典排序')
|
|
dict_label = Column(String(100), nullable=True, default='', comment='字典标签')
|
|
dict_value = Column(String(100), nullable=True, default='', comment='字典键值')
|
|
dict_type = Column(String(100), nullable=True, default='', comment='字典类型')
|
|
css_class = Column(String(100), nullable=True, default=None, comment='样式属性(其他样式扩展)')
|
|
list_class = Column(String(100), nullable=True, default=None, comment='表格回显样式')
|
|
is_default = Column(Boolean, nullable=True, default='N', comment='是否默认(Y是 N否)')
|
|
available = Column(Boolean, nullable=True, default='0', comment='状态(0正常 1停用)')
|
|
|
|
# 审计字段
|
|
description = Column(Text, nullable=True, comment="备注说明")
|
|
created_at = Column(DateTime, nullable=True,default=datetime.now, comment='创建时间')
|
|
updated_at = Column(DateTime, nullable=True,default=datetime.now, onupdate=datetime.now, comment='更新时间')
|
|
creator_id = Column(
|
|
Integer,
|
|
ForeignKey("system_users.id", ondelete="SET NULL", onupdate="CASCADE"),
|
|
nullable=True,
|
|
index=True,
|
|
comment="创建人ID"
|
|
)
|
|
creator = relationship(
|
|
"UserModel",
|
|
foreign_keys=creator_id,
|
|
lazy="joined",
|
|
post_update=True,
|
|
uselist=False
|
|
)
|