Files
FastapiAdmin/backend/app/api/v1/module_system/dict/model.py
T
zhangtao c0d32a7eec refactor: 统一将creator_id重命名为created_id并优化模型关系
feat: 新增系统租户和用户初始化数据

style: 优化代码注释和格式

fix: 修复数据权限检查逻辑中的created_id字段判断

perf: 移除不必要的模型关系以提升性能

docs: 更新初始化数据的描述信息

chore: 清理废弃文件和冗余代码
2025-11-24 01:02:27 +08:00

34 lines
1.5 KiB
Python

# -*- coding: utf-8 -*-
from sqlalchemy import String, Integer, Boolean
from sqlalchemy.orm import Mapped, mapped_column
from app.core.base_model import ModelMixin
class DictTypeModel(ModelMixin):
"""
字典类型表
"""
__tablename__: str = "system_dict_type"
__table_args__: dict[str, str] = ({'comment': '字典类型表'})
dict_name: Mapped[str] = mapped_column(String(255), nullable=False, comment='字典名称')
dict_type: Mapped[str] = mapped_column(String(255), nullable=False, comment='字典类型')
class DictDataModel(ModelMixin):
"""
字典数据表
"""
__tablename__: str = "system_dict_data"
__table_args__: dict[str, str] = ({'comment': '字典数据表'})
dict_sort: Mapped[int] = mapped_column(Integer, nullable=False, default=0, comment='字典排序')
dict_label: Mapped[str] = mapped_column(String(255), nullable=False, comment='字典标签')
dict_value: Mapped[str] = mapped_column(String(255), nullable=False, comment='字典键值')
css_class: Mapped[str | None] = mapped_column(String(255), nullable=True, comment='样式属性(其他样式扩展)')
list_class: Mapped[str | None] = mapped_column(String(255), nullable=True, comment='表格回显样式')
is_default: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False, comment='是否默认(True是 False否)')
dict_type: Mapped[str] = mapped_column(String(255), nullable=True, comment='字典类型')