成绩建表

This commit is contained in:
2026-09-21 16:30:07 +08:00
parent 1b9e5b8a57
commit 6e526d9f6b
+6 -2
View File
@@ -6,9 +6,13 @@ class Score(Base):
cid = Column(Integer
,primary_key = True
,autoincrement = True
,comment ='考试序次'
,comment ='编号'
)
score = Column(Float,nullable = False)
score_num = Column(Integer
,primary_key = True
,comment ='考试序次'
)
score = Column(Integer,nullable = False)
subject = Column(String(100)
,nullable = False
)