完成后端数据库连接配置
This commit is contained in:
18
backend/app/models/__init__.py
Normal file
18
backend/app/models/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
数据模型模块
|
||||
|
||||
定义数据库表结构和数据模型
|
||||
"""
|
||||
from app.core.database.mysql import (
|
||||
Base,
|
||||
DocumentField,
|
||||
DocumentTable,
|
||||
TaskRecord,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Base",
|
||||
"DocumentTable",
|
||||
"DocumentField",
|
||||
"TaskRecord",
|
||||
]
|
||||
Reference in New Issue
Block a user