This commit is contained in:
he
2026-09-21 12:24:56 +08:00
parent 46a707c5b0
commit a469461f88
3 changed files with 19 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from datetime import date
from typing import Self
from pydantic import BaseModel,Field
class GradeRequest(BaseModel):
stu_id:str|None = Field(description="学生编号")
class GradeResponse(BaseModel):