[성현모] Tra Overview 기능, 페이지 추가

This commit is contained in:
SHM
2025-09-01 16:07:32 +09:00
parent dc09a54ec8
commit 2cb56154e5
17 changed files with 518 additions and 77 deletions

View File

@ -0,0 +1,22 @@
namespace Web.Tra.Model
{
public class TestHistory : IDataModel
{
public long No { get; set; }
public DateTime TestDateTime { get; set; }
public string StationName { get; set; }
public string Host { get; set; }
public string Section { get; set; }
public string ProductID { get; set; }
public string TestType { get; set; }
public string ProductNo { get; set; }
public string TestCode { get; set; }
public string ParentNo { get; set; }
public string FileCode { get; set; }
public string FileVersion { get; set; }
public int? StepVersion { get; set; }
public string Duration { get; set; }
public string TestResult { get; set; }
public string TestlistReqID { get; set; }
}
}