13 lines
224 B
Python
13 lines
224 B
Python
"""
|
|
数据库基类和配置
|
|
"""
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
class Base(DeclarativeBase):
|
|
"""数据库模型基类"""
|
|
pass
|
|
|
|
|
|
__all__ = ["Base"]
|