Files
1/model/wl_class_model.py
T

8 lines
280 B
Python
Raw Normal View History

2026-09-12 20:55:36 +08:00
from sqlalchemy import Column, Integer, Date, String
2026-09-12 16:30:43 +08:00
from database import Base
2026-09-12 20:55:36 +08:00
class Class_(Base):
__tablename__ = "class_info"
class_id = Column(Integer, primary_key=True, autoincrement=True, comment="班级编号")
start_time = Column(Date, comment="开课时间")