This commit is contained in:
maruizhi
2026-09-22 12:16:28 +08:00
parent 5a39567f47
commit 7eb33e633b
7 changed files with 23 additions and 26 deletions
+10 -1
View File
@@ -5,7 +5,16 @@ from api.statistics_api import StatisticsAPI
from api.teacher_api import teacher_api
from api.grade_api import gradeAPI
from api.cla_api import claAPI
app = FastAPI(title='沃林学⽣管理系统')
tags_metadata = [
{"name": "教师基本信息管理模块"},
{"name": "班级管理模块"},
{"name": "学生基本信息管理模块"},
{"name": "学生考核成绩管理模块"},
{"name": "学生就业管理模块"},
{"name": "统计分析模块"},
]
app = FastAPI(title='沃林学⽣管理系统',openapi_tags=tags_metadata)
app.include_router(StudentAPI)