分支合并,调整完毕,可以运行,可以拉取该分支进行修改bug。

This commit is contained in:
Orangeeee
2026-09-22 13:44:05 +08:00
parent 4033dd86c1
commit f736845b6f
7 changed files with 20 additions and 7 deletions
+3
View File
@@ -2,8 +2,11 @@ from fastapi import FastAPI,APIRouter
from stu_jiuye.CURD_api import CURD
from stu_jiuye.database import Base,engine
# 合并接口
Shtudent_Jiuye = APIRouter()
Shtudent_Jiuye.include_router(CURD)
# 自测接口
app=FastAPI()
Base.metadata.create_all(engine)
app.include_router(CURD,tags=['就业管理系统'])