[성현모] Grid 성능 개선

This commit is contained in:
SHM
2025-09-17 09:32:33 +09:00
parent a57734308f
commit 89fe237e52
10 changed files with 287 additions and 183 deletions

View File

@ -2,12 +2,10 @@
{
public class TestHistory : IOverviewModel
{
public long No { get; set; }
public DateTime? TestDate { get; set; }
public DateTime? TestDateTime { get; set; }
public string ModelName { get; set; } //no use
public long No { get; set; }
public DateTime? TestDateTime { get; set; }
public string StationName { get; set; }
public string Host { get; set; }
public string Host { get; set; }
public string Section { get; set; }
public string ProductID { get; set; }
public string TestType { get; set; }
@ -16,12 +14,9 @@
public string ParentNo { get; set; }
public string FileCode { get; set; }
public string FileVersion { get; set; }
public int? StepVersion { get; set; }
public int StepVersion { get; set; }
public string Duration { get; set; }
public string TestResult { get; set; }
public string FirstTestTime { get; set; }
public string FinalTestTime { get; set; }
public string TestListCntID { get; set; }
public string TestResult { get; set; }
public string TestListReqID { get; set; }
}
}