2026-07-03 10:47:27 +08:00
|
|
|
namespace WCTDataMiner.Core.Models;
|
2026-07-02 18:13:56 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// TX软件版本维度表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TxSoftware
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
|
public string Version { get; set; } = null!;
|
|
|
|
|
public bool IsDeleted { get; set; } = false;
|
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
// Navigation Properties
|
|
|
|
|
public ICollection<TestScenario> TestScenarios { get; set; } = [];
|
|
|
|
|
}
|