10 lines
209 B
Python
10 lines
209 B
Python
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): |