b8f61a72aa
- 删除AtpModel、AtpModelVersion、AtpSimulationRun模型及相关代码 - 删除/api/v1/atp/models API端点 - 将engine status功能迁移到atp_asset_service - 更新路由和模型注册,移除atp_model引用 - 删除相关测试文件 - 更新fl_analysis_service使用atp_asset_service的_truncate_output Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: multica-agent <github@multica.ai>
34 lines
899 B
Python
34 lines
899 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, 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",
|
|
"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",
|
|
]
|