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

Class QuestionData

backend-python/models_yuuki.py:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21# 定义存储问题的模型
22class QuestionData(db.Model):
23 id = db.Column(db.Integer, primary_key=True)
24 interview_id = db.Column(db.String(100), nullable=False)
25 questions = db.Column(db.Text)
26
27class Interview(db.Model):
28 id = db.Column(db.Integer, primary_key=True)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected