46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
|
|
namespace Web.Tra.Model
|
|
{
|
|
public class TestResult : ITestResultModel
|
|
{
|
|
public long No { get; set; }
|
|
|
|
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; }
|
|
|
|
|
|
public List<DecompressTestResult> DecompressTestResult { get; set; }
|
|
}
|
|
|
|
public class DecompressTestResult : ITestResultModel
|
|
{
|
|
public long No { get; set; }
|
|
public DateTime? TestDate { get; set; }
|
|
public string StationName { get; set; }
|
|
public string Host { get; set; }
|
|
public string ModelName { get; set; }
|
|
|
|
public int StepID { get; set; }
|
|
public double MeasVal { get; set; }
|
|
public string MeasValStr { get; set; }
|
|
public string Message { get; set; }
|
|
public string GlobalMin { get; set; }
|
|
public string MesauredValue { get; set; }
|
|
public string GlobalMax { get; set; }
|
|
public string Result { get; set; }
|
|
public string SpentTime { get; set; }
|
|
}
|
|
}
|