This commit is contained in:
2026-03-29 23:17:20 +08:00
commit 7dc5e73af7
36 changed files with 1480 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
namespace OrpaonVision.Core.Enums;
/// <summary>
/// 标注任务状态。
/// </summary>
public enum AnnotationTaskStatusEnum
{
/// <summary>
/// 待开始。
/// </summary>
Pending = 1,
/// <summary>
/// 进行中。
/// </summary>
InProgress = 2,
/// <summary>
/// 已完成(外部平台已提交)。
/// </summary>
Completed = 3,
/// <summary>
/// 已回收(业务系统已成功回收标注结果)。
/// </summary>
Recovered = 4,
/// <summary>
/// 失败。
/// </summary>
Failed = 5
}