2023-05-23 16:13:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DeiNiu.Data.BaseObject
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class BaseOperModel
|
|
|
|
|
{
|
2024-02-06 19:36:47 +08:00
|
|
|
|
protected internal Object[] cmdParameters = new Object[12];
|
2023-05-23 16:13:17 +08:00
|
|
|
|
protected int _id;
|
|
|
|
|
internal bool _dr;
|
|
|
|
|
internal int _operater;
|
|
|
|
|
internal string _create_time = String.Empty;
|
|
|
|
|
internal string _lastmodified = String.Empty;
|
|
|
|
|
|
|
|
|
|
public Object[] CmdParameters
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return cmdParameters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int ID
|
|
|
|
|
{
|
|
|
|
|
get { return _id; }
|
|
|
|
|
set { _id = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|