[성현모] CPXV2, Log DB프로젝트, DB 컨텍스트 추가

This commit is contained in:
SHM
2025-08-29 09:52:19 +09:00
parent f1d466e17c
commit 0ff4843037
50 changed files with 2999 additions and 0 deletions

View File

@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class HIST_LogSummary
{
public long No { get; set; }
public string? StationName { get; set; }
public string TestType { get; set; } = null!;
public string Version { get; set; } = null!;
public string ProdCode { get; set; } = null!;
public int? TestListFileNo { get; set; }
public int? TestListVariantNo { get; set; }
public string? TestListCntID { get; set; }
public int? StepVersion { get; set; }
public string HostID { get; set; } = null!;
public string Section { get; set; } = null!;
public string ProdNo_C { get; set; } = null!;
public string ProdNo_P { get; set; } = null!;
public string Testcode { get; set; } = null!;
public string TestListFileName { get; set; } = null!;
public string ProductID { get; set; } = null!;
public string Result { get; set; } = null!;
public string Duration { get; set; } = null!;
public DateTime TestDT { get; set; }
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class HIST_TestResult
{
public long No { get; set; }
public DateTime? TestDT { get; set; }
public string LogData { get; set; } = null!;
}