[성현모] CPXV2, Log DB프로젝트, DB 컨텍스트 추가
This commit is contained in:
@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class HIST_TestListFile
|
||||
{
|
||||
public long No { get; set; }
|
||||
|
||||
public int? TestListFileNo { get; set; }
|
||||
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public byte[]? TestListData1 { get; set; }
|
||||
|
||||
public byte[]? TestListData2 { get; set; }
|
||||
|
||||
public byte[]? TestListData3 { get; set; }
|
||||
|
||||
public byte[]? TestListData4 { get; set; }
|
||||
|
||||
public byte[]? TestListData5 { get; set; }
|
||||
|
||||
public byte[]? TestListData6 { get; set; }
|
||||
|
||||
public byte[]? TestListData7 { get; set; }
|
||||
|
||||
public byte[]? TestListData8 { get; set; }
|
||||
|
||||
public byte[]? TestListData9 { get; set; }
|
||||
|
||||
public byte[]? TestListData10 { get; set; }
|
||||
|
||||
public virtual STOR_TestListFile? TestListFileNoNavigation { get; set; }
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class HIST_TestListFileLatestStepVersion
|
||||
{
|
||||
public long No { get; set; }
|
||||
|
||||
public int? TestListFileNo { get; set; }
|
||||
|
||||
public int LatestStepVersion { get; set; }
|
||||
|
||||
public virtual STOR_TestListFile? TestListFileNoNavigation { get; set; }
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class HIST_TestListFileVariantList
|
||||
{
|
||||
public long No { get; set; }
|
||||
|
||||
public int? TestListFileNo { get; set; }
|
||||
|
||||
public string? VariantList { get; set; }
|
||||
|
||||
public virtual STOR_TestListFile? TestListFileNoNavigation { get; set; }
|
||||
}
|
||||
@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class HIST_TesterSummary
|
||||
{
|
||||
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; }
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class PROD_Group
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string GroupName { get; set; } = null!;
|
||||
|
||||
public string ModelName { get; set; } = null!;
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public virtual ICollection<PROD_Variant> PROD_Variants { get; set; } = new List<PROD_Variant>();
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class PROD_Release
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string ProdNo_C { get; set; } = null!;
|
||||
|
||||
public int? TestCodeNo { get; set; }
|
||||
|
||||
public int? VariantNo { get; set; }
|
||||
|
||||
public string Config { get; set; } = null!;
|
||||
|
||||
public DateTime RegDT { get; set; }
|
||||
|
||||
public string RegUser { get; set; } = null!;
|
||||
|
||||
public string? RegUserComment { get; set; }
|
||||
|
||||
public virtual STAT_TestCode? TestCodeNoNavigation { get; set; }
|
||||
|
||||
public virtual PROD_Variant? VariantNoNavigation { get; set; }
|
||||
}
|
||||
@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class PROD_Variant
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string ProdNo_P { get; set; } = null!;
|
||||
|
||||
public DateTime RegDT { get; set; }
|
||||
|
||||
public string RegUser { get; set; } = null!;
|
||||
|
||||
public DateTime UpdateDT { get; set; }
|
||||
|
||||
public string UpdateUser { get; set; } = null!;
|
||||
|
||||
public int? GroupNo { get; set; }
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public string? Description { get; set; }
|
||||
|
||||
public int? TestListFileNo { get; set; }
|
||||
|
||||
public int UseTLPosition { get; set; }
|
||||
|
||||
public bool IsUse { get; set; }
|
||||
|
||||
public virtual PROD_Group? GroupNoNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<PROD_Release> PROD_Releases { get; set; } = new List<PROD_Release>();
|
||||
|
||||
public virtual STOR_TestListFile? TestListFileNoNavigation { get; set; }
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class STAT_Host
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string HostID { get; set; } = null!;
|
||||
|
||||
public string Section { get; set; } = null!;
|
||||
|
||||
public string IP { get; set; } = null!;
|
||||
|
||||
public string? TestCode { get; set; }
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public DateTime UpdateDT { get; set; }
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class STAT_TestCode
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string TestCode { get; set; } = null!;
|
||||
|
||||
public string Gate1 { get; set; } = null!;
|
||||
|
||||
public string Gate2 { get; set; } = null!;
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public virtual ICollection<PROD_Release> PROD_Releases { get; set; } = new List<PROD_Release>();
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class STAT_User
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string UserID { get; set; } = null!;
|
||||
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public string Password { get; set; } = null!;
|
||||
|
||||
public string Dept { get; set; } = null!;
|
||||
|
||||
public string Email { get; set; } = null!;
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public DateTime UpdateDT { get; set; }
|
||||
}
|
||||
@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class STOR_TestListFile
|
||||
{
|
||||
public int No { get; set; }
|
||||
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public string TestType { get; set; } = null!;
|
||||
|
||||
public string Version { get; set; } = null!;
|
||||
|
||||
public string ProdCode { get; set; } = null!;
|
||||
|
||||
public string FileName { get; set; } = null!;
|
||||
|
||||
public DateTime RegDT { get; set; }
|
||||
|
||||
public string RegUser { get; set; } = null!;
|
||||
|
||||
public DateTime UpdateDT { get; set; }
|
||||
|
||||
public string UpdateUser { get; set; } = null!;
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public string? Description { get; set; }
|
||||
|
||||
public byte[] TestListData { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<HIST_TestListFileLatestStepVersion> HIST_TestListFileLatestStepVersions { get; set; } = new List<HIST_TestListFileLatestStepVersion>();
|
||||
|
||||
public virtual ICollection<HIST_TestListFileVariantList> HIST_TestListFileVariantLists { get; set; } = new List<HIST_TestListFileVariantList>();
|
||||
|
||||
public virtual ICollection<HIST_TestListFile> HIST_TestListFiles { get; set; } = new List<HIST_TestListFile>();
|
||||
|
||||
public virtual ICollection<PROD_Variant> PROD_Variants { get; set; } = new List<PROD_Variant>();
|
||||
|
||||
public virtual ICollection<VRFY_TestListFileRelease> VRFY_TestListFileReleases { get; set; } = new List<VRFY_TestListFileRelease>();
|
||||
}
|
||||
@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SystemX.Core.DB;
|
||||
|
||||
public partial class VRFY_TestListFileRelease
|
||||
{
|
||||
public long No { get; set; }
|
||||
|
||||
public int? TestListFileNo { get; set; }
|
||||
|
||||
public long StepID { get; set; }
|
||||
|
||||
public string Variant { get; set; } = null!;
|
||||
|
||||
public string Gate { get; set; } = null!;
|
||||
|
||||
public bool? Activate { get; set; }
|
||||
|
||||
public int StepVersion { get; set; }
|
||||
|
||||
public bool? Enable { get; set; }
|
||||
|
||||
public long? Position { get; set; }
|
||||
|
||||
public string? StepDesc { get; set; }
|
||||
|
||||
public string UseFunction { get; set; } = null!;
|
||||
|
||||
public string? MacroParm { get; set; }
|
||||
|
||||
public string? Parm { get; set; }
|
||||
|
||||
public string SpecMin { get; set; } = null!;
|
||||
|
||||
public string SpecMax { get; set; } = null!;
|
||||
|
||||
public bool? IsGlobal { get; set; }
|
||||
|
||||
public string Dim { get; set; } = null!;
|
||||
|
||||
public DateTime UpdateDT { get; set; }
|
||||
|
||||
public virtual STOR_TestListFile? TestListFileNoNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user