版本260406

This commit is contained in:
2026-04-06 22:04:05 +08:00
parent 7dc5e73af7
commit 0b150470be
216 changed files with 98993 additions and 33 deletions

View File

@@ -0,0 +1,47 @@
namespace OrpaonVision.Core.Training.Contracts;
/// <summary>
/// 数据集版本列表项。
/// </summary>
public sealed class DatasetVersionListItemDto
{
/// <summary>
/// 数据集版本ID。
/// </summary>
public Guid DatasetVersionId { get; init; }
/// <summary>
/// 版本号。
/// </summary>
public string VersionNo { get; init; } = string.Empty;
/// <summary>
/// 数据集名称。
/// </summary>
public string Name { get; init; } = string.Empty;
/// <summary>
/// 机种编码。
/// </summary>
public string ProductTypeCode { get; init; } = string.Empty;
/// <summary>
/// 总样本数。
/// </summary>
public int TotalSampleCount { get; init; }
/// <summary>
/// 数据集状态。
/// </summary>
public string Status { get; init; } = string.Empty;
/// <summary>
/// 创建时间UTC
/// </summary>
public DateTime CreatedAtUtc { get; init; }
/// <summary>
/// 创建者。
/// </summary>
public string CreatedBy { get; init; } = string.Empty;
}