""" 模型模块 所有 SQLAlchemy 模型定义。 注意:AIModel/AIPlatform 已迁移到 YAML 配置 (config/platform-config.yaml) """ from app.models.base import BaseModel from app.models.point_batch import PointBatch from app.models.point_recharge_order import PointRechargeOrder from app.models.point_transaction import PointTransaction from app.models.user import User from app.models.user_device import UserDevice from app.models.user_point import UserPoint # 当前可用的模型 __all__ = [ "BaseModel", "User", "UserDevice", "UserPoint", "PointBatch", "PointTransaction", "PointRechargeOrder", ]