版本260406
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user