第一次测试!

This commit is contained in:
test1
2026-09-21 11:13:41 +08:00
parent 8523cc4996
commit 1a7281f0c0
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class Teacher_Model(Base):
teac_gender=Column(String(5),comment='老师性别')
teac_age=Column(Integer,comment='老师年龄')
teac_position =Column(String(20),comment='老师职位')
status=Column(Integer,default=0,comment='课程进度:学习中=0,求职中=1,已就业=2')
status=Column(Integer,default=0,comment='删除状态:已删除=0,初始值=1')
create_date=Column(DATETIME,default=datetime.now)
update_date=Column(DATETIME,default=datetime.now,onupdate=datetime.now)