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
+20
View File
@@ -0,0 +1,20 @@
from sqlalchemy import Integer, Boolean, Column, DateTime, Integer, String
from util.database import Base
class Interview(Base):
"""对应 Excel Sheet:面试信息表。"""
__tablename__ = "wl_interview"
id = Column(Integer, primary_key=True, autoincrement=True)
interview_at = Column(DateTime)
student_id = Column(Integer)
room = Column(String(100))
sequence = Column(Integer)
company_id = Column(Integer)
result = Column(Boolean)
created_at = Column(DateTime)
updated_at = Column(DateTime)
is_deleted = Column(default=False, nullable=False)