using System;
namespace ETD.Frame
{
///
/// 值类
///
[Serializable]
public class EntityValue
{
private string _FieldName = string.Empty;
///
/// 字段名
///
public string FieldName
{
get
{
return this._FieldName;
}
set
{
this._FieldName = value;
}
}
private object _CurrentValue;
///
/// 当前值
///
public object CurrentValue
{
get
{
return this._CurrentValue;
}
set
{
this._CurrentValue = value;
}
}
private bool _IsChanage = false;
///
/// 值是否改变
///
public bool IsChanage
{
get
{
return this._IsChanage;
}
set
{
this._IsChanage = value;
}
}
private object _OriginalValue;
///
/// 原始值
///
public object OriginalValue
{
get
{
return this._OriginalValue;
}
set
{
this._OriginalValue = value;
}
}
}
}