Files
OrpaonVision/OrpaonVision.Model/Annotation/AnnotationTaskItemModel.cs
2026-03-29 23:17:20 +08:00

58 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace OrpaonVision.Model.Annotation;
/// <summary>
/// 标注任务项模型(对应需求文档中的 mdl_annotation_task_item
/// </summary>
public sealed class AnnotationTaskItemModel
{
/// <summary>
/// 主键。
/// </summary>
public long Id { get; set; }
/// <summary>
/// 所属标注任务 ID。
/// </summary>
public long AnnotationTaskId { get; set; }
/// <summary>
/// 数据集项 ID。
/// </summary>
public long DatasetItemId { get; set; }
/// <summary>
/// 处理状态。
/// </summary>
public int Status { get; set; }
/// <summary>
/// 审核人。
/// </summary>
public string? ReviewedBy { get; set; }
/// <summary>
/// 审核时间。
/// </summary>
public DateTime? ReviewedAt { get; set; }
/// <summary>
/// 创建时间。
/// </summary>
public DateTime CreatedAt { get; set; }
/// <summary>
/// 创建人。
/// </summary>
public string? CreatedBy { get; set; }
/// <summary>
/// 更新时间。
/// </summary>
public DateTime? UpdatedAt { get; set; }
/// <summary>
/// 更新人。
/// </summary>
public string? UpdatedBy { get; set; }
}