fix: 修复model异常
This commit is contained in:
@@ -6,7 +6,7 @@ from commons.models.model import Model
|
||||
from core.extensions import db
|
||||
|
||||
|
||||
class MaterialTask(db.Model, OperationTrackMixin, Model):
|
||||
class MaterialTask(db.Model, Model, OperationTrackMixin, Model):
|
||||
id = Column('ID', Integer, primary_key=True)
|
||||
name = Column('NAME', String(128), default='', comment='任务名称')
|
||||
status = Column('STATUS', Integer, default=0, comment='状态(待采集、已采集、采集中)')
|
||||
|
Reference in New Issue
Block a user