班级表

This commit is contained in:
2026-09-24 11:55:16 +08:00
parent 052c162c95
commit 035108b3a9
+2 -2
View File
@@ -8,9 +8,9 @@ class ClassManagement(Base):
__tablename__ = "wl_class" __tablename__ = "wl_class"
id= Column(Integer,autoincrement=True,comment='id') class_id= Column(Integer, primary_key=True,comment='id')
class_id= Column(Integer, primary_key=True ,comment='班级编号') class_num= Column(Integer, comment='班级编号')
class_name = Column(String(100), comment='班级名字') class_name = Column(String(100), comment='班级名字')