This commit is contained in:
jl
2023-09-14 10:49:07 +08:00
parent cc78693b7d
commit 29bfe4c6aa
8 changed files with 752 additions and 695 deletions

View File

@ -139,7 +139,14 @@ namespace Epost.DAL.Cache
}
else if (CommendType.Equals(EcommendType.CompleteAll))
{
//删除作业任务 已完成
foreach (var planitem in PlanJobList.ToArray())
{
PlanJobList.Remove(planitem);
}
}
return true;
}
}
@ -186,7 +193,12 @@ namespace Epost.DAL.Cache
/// 作业完成
/// </summary>
[Description("作业完成")]
Complete
Complete,
/// <summary>
/// 作业完成
/// </summary>
[Description("作业完成")]
CompleteAll
}
}