From d50af7ecc3db663e6cfa4b28538621dc56c3a968 Mon Sep 17 00:00:00 2001 From: wolin_ck666_999 Date: Tue, 22 Sep 2026 15:14:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=E3=80=8Cschema=E3=80=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schema/e_schema.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 schema/e_schema.py diff --git a/schema/e_schema.py b/schema/e_schema.py new file mode 100644 index 0000000..f0f122b --- /dev/null +++ b/schema/e_schema.py @@ -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 + + + + +