feat: 初始化福州港日报管理系统

- 添加日报生成功能 (report_generator.py)
- 添加 GUI 界面 (daily_report_gui.py)
- 添加班次交接报告功能 (shift_report.py)
- 集成飞书 API 获取排班信息
- 集成 Metabase 查询作业数据
- 生成 AGENTS.md 文档
This commit is contained in:
2026-03-03 02:07:34 +08:00
commit 00d2218c6d
16 changed files with 3713 additions and 0 deletions

16
feishu/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
"""
飞书模块包
提供统一的飞书API接口
"""
from .client import FeishuSheetsClient, FeishuClientError
from .parser import ScheduleDataParser
from .manager import FeishuScheduleManager
__all__ = [
"FeishuSheetsClient",
"FeishuClientError",
"ScheduleDataParser",
"FeishuScheduleManager",
]