[성현모] 버그수정

This commit is contained in:
SHM
2025-09-04 11:10:34 +09:00
parent e36a7ba8a6
commit 0fb0da2daf
4 changed files with 23 additions and 7 deletions

View File

@ -3,7 +3,17 @@
public interface IDataModel
{
public DateTime? TestDate { get; set; }
public string ModelName { get; set; }
public string StationName { get; set; }
public string Host { get; set; }
public string Section { get; set; }
public string ModelName { 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 FirstTestTime { get; set; }
public string FinalTestTime { get; set; }
}
}