79 lines
1.9 KiB
C#
79 lines
1.9 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace INT_LKD.DataStore
|
|
{
|
|
public class HistoryData
|
|
{
|
|
#region Field
|
|
private string m_Type;
|
|
private DateTime m_Time;
|
|
private string m_LoginID;
|
|
private Object m_Event;
|
|
private string m_Detail;
|
|
private string m_BeforeData;
|
|
private string m_AfterData;
|
|
#endregion
|
|
|
|
#region Constructor
|
|
public HistoryData()
|
|
{
|
|
this.Initialize();
|
|
}
|
|
#endregion
|
|
|
|
#region Property
|
|
public string Type
|
|
{
|
|
get { return this.m_Type; }
|
|
set { this.m_Type = value; }
|
|
}
|
|
public DateTime Time
|
|
{
|
|
get { return this.m_Time; }
|
|
set { this.m_Time = value; }
|
|
}
|
|
public string LoginID
|
|
{
|
|
get { return this.m_LoginID; }
|
|
set { this.m_LoginID = value; }
|
|
}
|
|
public Object Event
|
|
{
|
|
get { return this.m_Event; }
|
|
set { this.m_Event = value; }
|
|
}
|
|
public string Detail
|
|
{
|
|
get { return this.m_Detail; }
|
|
set { this.m_Detail = value; }
|
|
}
|
|
public string BeforeData
|
|
{
|
|
get { return this.m_BeforeData; }
|
|
set { this.m_BeforeData = value; }
|
|
}
|
|
public string AfterData
|
|
{
|
|
get { return this.m_AfterData; }
|
|
set { this.m_AfterData = value; }
|
|
}
|
|
#endregion
|
|
|
|
#region Method
|
|
private void Initialize()
|
|
{
|
|
this.Type = "";
|
|
this.Time = new DateTime();
|
|
this.LoginID = "-";
|
|
this.Event = new object();
|
|
this.Detail = "";
|
|
this.AfterData = "";
|
|
this.BeforeData = "";
|
|
}
|
|
#endregion
|
|
}
|
|
}
|