[성현모] DataModel분리, TestResult 페이지/기능 추가
This commit is contained in:
20
Projects/WebClient/Web.Tra/Model/IOverviewModel.cs
Normal file
20
Projects/WebClient/Web.Tra/Model/IOverviewModel.cs
Normal file
@ -0,0 +1,20 @@
|
||||
namespace Web.Tra.Model
|
||||
{
|
||||
public interface IOverviewModel : IDataModel
|
||||
{
|
||||
public DateTime? TestDate { 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; }
|
||||
public string TestListCntID { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user