This commit is contained in:
maruizhi
2026-09-21 17:47:50 +08:00
parent f97b46961a
commit 87e6083295
5 changed files with 87 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
from pydantic import BaseModel
class AllStuResponse(BaseModel):
class_id: int
gender: str | None
cnt: int
class AvgDayResponse(BaseModel):
class_id: int
avg_days: str | None