添加产品规格文档并优化项目结构

Made-with: Cursor
This commit is contained in:
刘国栋
2026-04-30 18:37:46 +08:00
parent bf2551d529
commit fb309299bf
101 changed files with 9586 additions and 14386 deletions
+11
View File
@@ -0,0 +1,11 @@
"""
服务层:封装对 modules 业务模块的常用工作流,供 UI 层(tab_*.py)按需调用。
- 不替代现有业务类,仅做薄封装与流程编排。
- Tab 可继续直接使用 modules.*,也可逐步改为调用本层以集中错误处理、参数归一化等。
"""
from . import schema_service
from . import tech_config_service
__all__ = ["schema_service", "tech_config_service"]