统计分析模块更新,待测试,成绩模块更新。

This commit is contained in:
Orangeeee
2026-09-22 18:23:13 +08:00
parent 6a39e1d56f
commit 6775da7f89
12 changed files with 33 additions and 24 deletions
+3 -8
View File
@@ -12,11 +12,8 @@ statcalc_api = APIRouter()
,summary='人员信息查询'
,description=f'查询所有超过30岁的学员的信息。'
)
def get_students( stu:StudentsQuery = Depends()
, db=Depends(get_db)
):
s_dict = stu.model_dump(exclude_unset=True) # 没值的不要
result = get_student_dao( s=s_dict , db=db )
def get_students(db=Depends(get_db)):
result = get_age_30( db=db )
if result:
return result
raise HTTPException(status_code=404, detail="没有找到符合条件的学生")
@@ -25,9 +22,7 @@ def get_students( stu:StudentsQuery = Depends()
,summary='人数统计'
,description=f'统计每个班级的人数以及男生女生的人数。'
)
def get_students( stu:StudentsQuery = Depends()
, db=Depends(get_db)
):
def get_students(db=Depends(get_db)):
s_dict = stu.model_dump(exclude_unset=True) # 没值的不要
result = get_student_dao( s=s_dict , db=db )
if result: