34 lines
726 B
C#
34 lines
726 B
C#
|
|
|
|
using System;
|
|
|
|
namespace DeiNiu.Data.BaseObject
|
|
{
|
|
[Serializable]
|
|
public class BaseOperModel
|
|
{
|
|
protected internal Object[] cmdParameters = new Object[12];
|
|
protected int _id;
|
|
internal bool _dr;
|
|
internal int _operater;
|
|
internal string _create_time = String.Empty;
|
|
internal string _lastmodified = String.Empty;
|
|
protected static log4net.ILog log = log4net.LogManager.GetLogger("logCommon");
|
|
public Object[] CmdParameters
|
|
{
|
|
get
|
|
{
|
|
return cmdParameters;
|
|
}
|
|
|
|
}
|
|
|
|
public int ID
|
|
{
|
|
get { return _id; }
|
|
set { _id = value; }
|
|
}
|
|
|
|
}
|
|
}
|