删除任务信息接口bug修复

This commit is contained in:
zhangwei 2023-09-18 09:40:15 +08:00
parent 9bdb33268b
commit 5a33aba8bf
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ func (l *DeleteTaskLogic) DeleteTask(req *types.DeleteTaskReq) error {
return tx.Error
}
// 将子任务信息修改为待删除
tx = l.svcCtx.DbEngin.Model(&model.Task{}).Where("id", req.Id).Update("status", "WaitDelete")
tx = l.svcCtx.DbEngin.Model(&model.Cloud{}).Where("task_id", req.Id).Update("status", "WaitDelete")
if tx.Error != nil {
return tx.Error
}