diff --git a/Model/Systems.cs b/Model/Systems.cs index b3e3b0d..acb3730 100644 --- a/Model/Systems.cs +++ b/Model/Systems.cs @@ -79,6 +79,26 @@ namespace NP.Model public String menunos { get; set; } public int isdel { get; set; } } + /*엑셀 다운로드 기록*/ + public partial class Excellog + { + public int edno { get; set; } + + public int userno { get; set; } + + public string userid { get; set; } + + public string username { get; set; } + + public DateTime actiontime { get; set; } + + public string position { get; set; } + + public string comment { get; set; } + + public string userip { get; set; } + } + /*엑셀을 다운로드 기록 끝*/ [Serializable] public class AuthGroup : BaseModel diff --git a/Model/VMCM.cs b/Model/VMCM.cs index 404d535..ba5ceb2 100644 --- a/Model/VMCM.cs +++ b/Model/VMCM.cs @@ -58,5 +58,7 @@ namespace NP.Model public Assign Assign { get; set; } public PPLog PPLog { get; set; } + public Excellog excellog { get; set; } + } }