| 123456789101112131415161718192021 |
- from typing import Any, Dict, List, Optional
- from app.core.database import DatabaseManager
- from ._const import LongArticlesMcpConst
- class LongArticlesMcpMapper(LongArticlesMcpConst):
- """MCP 方法层:只负责拼 SQL + 访问 DB,不做业务编排。"""
- def __init__(self, pool: DatabaseManager):
- self.pool = pool
- # 解构
- # 抓取
- # 统计
- __all__ = ["LongArticlesMcpMapper"]
|