초기 커밋.

This commit is contained in:
2025-02-03 11:02:48 +09:00
parent a7d46f415f
commit fe9aa0799f
2334 changed files with 674826 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System;
using JWH.DATA;
namespace DDUtilityApp.LOGPARSER.DATA
{
public class EisModelDetails : DataTableBase
{
public string ModelID { get; set; }
public string Version { get; set; }
public string Description { get; set; }
public DateTime DateTime { get; set; }
public string Modifier { get; set; }
public string LockState { get; set; }
}
public class EisModelInfo : DataTableBase
{
public string ModelID { get; set; }
public string Maker { get; set; }
public string Model { get; set; }
public string Description { get; set; }
public DateTime DateTime { get; set; }
public string Modifier { get; set; }
}
}