6 lines
148 B
Python
6 lines
148 B
Python
"""SQLAlchemy 2.0 声明式基类,所有 ORM 模型继承。"""
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
pass |