Files
SST/PythonProject/schema/teacher_schema.py
T

24 lines
299 B
Python
Raw Normal View History

2026-09-21 11:10:38 +08:00
from datetime import date
from pydantic.v1 import BaseModel
from datetime import datetime
class Teacher_RequestModel(BaseModel):
teac_id: int
teac_name:str
teac_gender:str
teac_age:int
teac_position:str
status=int
create_date:datetime
update_date:datetime