updated aitask model

Former-commit-id: 390f37794e551c366df0107ba11c6f7e3a50d002
This commit is contained in:
tzwang 2024-04-29 16:39:56 +08:00
parent 15c991ead1
commit 50083890bd
1 changed files with 13 additions and 13 deletions

View File

@ -45,10 +45,10 @@ type (
CTaskId string `db:"c_task_id"` // 集群返回任务id
Strategy string `db:"strategy"` // 主任务使用策略
Status string `db:"status"` // 任务状态
Msg sql.NullString `db:"msg"` // 集群返回任务信息
Msg string `db:"msg"` // 集群返回任务信息
CommitTime time.Time `db:"commit_time"` // 提交时间
StartTime time.Time `db:"start_time"` // 开始时间
EndTime time.Time `db:"end_time"` // 结束时间
StartTime string `db:"start_time"` // 开始时间
EndTime string `db:"end_time"` // 结束时间
}
)