上传文件至「api」 #8

Merged
wolin_ck666_999 merged 4 commits from hjx into main 2026-09-22 15:15:18 +08:00
Showing only changes of commit d50af7ecc3 - Show all commits
+13
View File
@@ -0,0 +1,13 @@
from pydantic import BaseModel
from typing import Optional
class EmploymentRequest(BaseModel):
stu_id: str|None = None
class_name: str|None = None
company: Optional[str] = None
salary: Optional[int] = None