Files
fquiz/api/app/models/__init__.py
T
chengkai3 6d52f24ef3 [feat]:[FL-206][新增维度管理功能]
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: multica-agent <github@multica.ai>
2026-06-28 11:01:16 +08:00

35 lines
937 B
Python

"""Database model package.
Import all model modules during package initialization so SQLAlchemy can
resolve string-based relationships regardless of route/service import order.
"""
from . import ai_chat, atp_asset, audit_log, auth_session, dimension_item, document, elevation, file_storage, fl_analysis, lightning_event, lightning_sample, line, line_tower, menu, object_group, rbac, scheduled_task, system_message, system_param, tower_model, tower_profile, user, wine, worker_registry
__all__ = [
"ai_chat",
"atp_asset",
"audit_log",
"auth_session",
"dimension_item",
"document",
"elevation",
"file_storage",
"fl_analysis",
"lightning_event",
"lightning_sample",
"line",
"line_tower",
"menu",
"object_group",
"rbac",
"scheduled_task",
"system_message",
"system_param",
"tower_model",
"tower_profile",
"user",
"wine",
"worker_registry",
]