MCPcopy Create free account
hub / github.com/air158/OfferCat / Interview

Class Interview

backend-python/models_yuuki.py:27–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25 questions = db.Column(db.Text)
26
27class Interview(db.Model):
28 id = db.Column(db.Integer, primary_key=True)
29 interview_id = db.Column(db.String(100), unique=True, nullable=False)
30 job_title = db.Column(db.String(128), nullable=False)
31 interview_feedback = db.Column(db.Text, nullable=True) # 存储面试的评价

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected