generated from kgod/ai-review-template
8 lines
139 B
Python
8 lines
139 B
Python
"""模型基类"""
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""SQLAlchemy 声明式基类"""
|
|
pass
|