8 lines
156 B
Python
8 lines
156 B
Python
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""SQLAlchemy 基类:所有 ORM 模型统一继承该基类。"""
|
|
|
|
pass
|