v1
This commit is contained in:
57
OrpaonVision.Model/Annotation/AnnotationTaskItemModel.cs
Normal file
57
OrpaonVision.Model/Annotation/AnnotationTaskItemModel.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user