简单的修改

This commit is contained in:
2025-12-02 17:27:09 +08:00
parent 4b98b61f10
commit e25d344f8a
7 changed files with 116 additions and 26 deletions

View File

@@ -8,27 +8,27 @@ namespace FATrace.Model
public enum TaskStatus
{
/// <summary>
/// 待处理(已入队但尚未开始)
/// 待处理(已入队但尚未开始)
/// </summary>
Pending = 0,
/// <summary>
/// 运行中(正在处理)
/// 运行中(正在处理)
/// </summary>
Running = 1,
/// <summary>
/// 已完成(处理成功)
/// 已完成(处理成功)
/// </summary>
Completed = 2,
/// <summary>
/// 失败(处理过程中出现错误)
/// 失败(处理过程中出现错误)
/// </summary>
Failed = 3,
/// <summary>
/// 已取消(由用户或系统取消处理)
/// 已取消(由用户或系统取消处理)
/// </summary>
Canceled = 4
}