This commit is contained in:
maruizhi
2026-09-24 14:10:22 +08:00
parent a9d73c8578
commit a0bf614c77
27 changed files with 245 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
from sqlalchemy import Integer, Column, DateTime, Numeric, String
from util.database import Base
class EmploymentInfo(Base):
"""对应 Excel Sheet:就业信息表。"""
__tablename__ = "wl_employment_info"
id = Column(Integer, primary_key=True, autoincrement=True)
student_id = Column(Integer)
employment_salary = Column(Numeric(12, 2))
company_number = Column(String(50))
resume_opened_at = Column(DateTime)
offer_received_at = Column(DateTime)
created_at = Column(DateTime)
updated_at = Column(DateTime)
is_deleted = Column(default=False, nullable=False)