test三轮完成的版本,并入了国伟的班级模块

This commit is contained in:
2026-09-13 18:20:37 +08:00
parent 8be44d8539
commit 24b0ad46ec
5 changed files with 229 additions and 4 deletions
+1 -2
View File
@@ -2,11 +2,10 @@ from sqlalchemy import Column, Integer, Float
from database import Base
class Score(Base):
__tablename__ = "student_score"
__tablename__ = "wl_score"
stu_id = Column(Integer, primary_key=True, comment="学生编号")
exam_order = Column(Integer, primary_key=True, comment="考核序次")
score = Column(Float, nullable=False, comment="成绩")