统一 Repository 方案:添加 db 基类和子图模型 + 通讯录 API 支持真实数据库
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Has been cancelled

This commit is contained in:
2026-04-27 16:37:45 +08:00
parent 0cb9571db7
commit 29016f8792
6 changed files with 460 additions and 57 deletions

View File

@@ -0,0 +1,7 @@
"""
数据库模块
提供统一的 Repository 和实体类
"""
from .base import BaseRepository, BaseEntity
__all__ = ['BaseRepository', 'BaseEntity']