baoxiang/backend/app/models/base.py
2025-12-16 18:06:50 +08:00

7 lines
107 B
Python

"""
基础模型类
"""
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()