535d97a70c
17-table PostgreSQL schema with full Chinese column comments, FastAPI project structure (admin/common/modules), DSL rule files, and schema migration scripts.
11 lines
196 B
Python
11 lines
196 B
Python
"""SQLAlchemy 声明式基类。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""SQLAlchemy 声明式基类。"""
|
|
pass
|