入库操作

This commit is contained in:
dxc
2026-01-26 13:35:30 +08:00
parent 0081e7682d
commit 65d9e89c9a
33 changed files with 193 additions and 0 deletions

6
app/extensions.py Normal file
View File

@ -0,0 +1,6 @@
from flask_sqlalchemy import SQLAlchemy
from flask_marshmallow import Marshmallow
# 初始化数据库和序列化工具
db = SQLAlchemy()
ma = Marshmallow()