7 lines
107 B
Python
7 lines
107 B
Python
|
|
"""
|
||
|
|
基础模型类
|
||
|
|
"""
|
||
|
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
|
|
||
|
|
Base = declarative_base()
|