bea288e414
== 已部署上线 (9项) == - 代办事项真实数据源集成 (企微审批API 8bug修复链) - H5/坐席端 Logo样式统一+绿色背景 - 视频引导页修复 (localStorage key v2) - 坐席端 v9 Vue版本修复 (ElMessage._context) - 截图按钮 v10 修复 (getDisplayMedia user gesture) - 扫码样式恢复+H5扫码登录跳转修复 - H5截图快捷键提示 == 代码完成待部署 (3项) == - 知识迭代3Bug修复 (#8 POST端点/#7 MERGE幂等/#6 过期检查) - 会议室预定-小鱼易联终端 (40文件, 40/40测试通过) - IT资产升级审批推送 (asset_service.py) == 需求文档 (2项) == - 坐席端AI辅助消息框-PRD (4项新功能确认) - 坐席端布局优化建议 v2.0 (7天计划) == 新增文档 == - 日报-2026-07-11.md - 知识迭代Bug修复报告-20260711.md - 会议室预定-部署指南.md - CHANGELOG.md 更新 == 测试 == - test_todo_integration.py: 40/40 - test_meetingroom.py: 40/40 - test_bugfix_ki_suggestions.py: 21/21
79 lines
2.0 KiB
Plaintext
79 lines
2.0 KiB
Plaintext
classDiagram
|
|
direction LR
|
|
|
|
class ConfigChangeLog {
|
|
+String id
|
|
+String config_key
|
|
+Text old_value
|
|
+Text new_value
|
|
+String changed_by
|
|
+DateTime changed_at
|
|
}
|
|
class AuditLog {
|
|
+String id
|
|
+String employee_id
|
|
+String action
|
|
+String resource
|
|
+String resource_id
|
|
+JSON details
|
|
+String result
|
|
+String ip_address
|
|
+Text user_agent
|
|
+DateTime created_at
|
|
}
|
|
class RuntimeLogEntry {
|
|
+String timestamp
|
|
+String level
|
|
+String logger
|
|
+String message
|
|
+String module
|
|
+String function
|
|
+int line
|
|
+String request_id
|
|
+String user_id
|
|
}
|
|
class ConfigHistoryItem {
|
|
+String id
|
|
+String config_key
|
|
+String old_value
|
|
+String new_value
|
|
+String changed_by
|
|
+String changed_by_name
|
|
+DateTime changed_at
|
|
}
|
|
|
|
class AdminApi {
|
|
+GET /system-logs
|
|
}
|
|
class AuditApi {
|
|
+GET /audit-logs
|
|
}
|
|
class RuntimeApi {
|
|
+GET /runtime-logs
|
|
}
|
|
class AdminService {
|
|
+get_system_logs(db, config_key, changed_by, from, to, page, page_size)
|
|
}
|
|
class AuditLogService {
|
|
+list_audit_logs(db, employee_id, action, resource, from, to, page, page_size)
|
|
}
|
|
class RuntimeLogService {
|
|
+read_runtime_logs(dir, level, from, to, keyword, page, page_size)
|
|
+build_runtime_log_stream(dir, level, from, to, keyword)
|
|
}
|
|
class RuntimeLogStore {
|
|
<<filesystem>>
|
|
+RUNTIME_LOG_DIR/*.log
|
|
}
|
|
|
|
AdminApi ..> AdminService : 调用
|
|
AuditApi ..> AuditLogService : 调用
|
|
RuntimeApi ..> RuntimeLogService : 调用
|
|
|
|
AdminService ..> ConfigChangeLog : SELECT
|
|
AuditLogService ..> AuditLog : SELECT
|
|
RuntimeLogService ..> RuntimeLogStore : 读文件
|
|
|
|
ConfigHistoryItem <|.. ConfigChangeLog : 映射
|
|
RuntimeLogEntry <|.. RuntimeLogStore : 逐行解析
|