Files
leaudit-platform-backend/fastapi_common/fastapi_common_sqlalchemy/base.py
T
wren 535d97a70c chore: initial commit — leaudit-platform project skeleton
17-table PostgreSQL schema with full Chinese column comments,
FastAPI project structure (admin/common/modules),
DSL rule files, and schema migration scripts.
2026-04-27 16:48:22 +08:00

11 lines
196 B
Python

"""SQLAlchemy 声明式基类。"""
from __future__ import annotations
from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
"""SQLAlchemy 声明式基类。"""
pass