baoxiang/backend/app/models/base.py

7 lines
107 B
Python
Raw Normal View History

2025-12-16 18:06:50 +08:00
"""
基础模型类
"""
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()