using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Runtime.Serialization;
|
using SqlSugar;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 特殊属性/附加属性 值
|
/// </summary>
|
[SugarTable("special_property_value")]
|
public class SpecialPropertyValue : CorpEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public SpecialPropertyValue() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public SpecialPropertyValue(SpecialPropertyValue rhs) : base(rhs)
|
{
|
this.ObjectType = rhs.ObjectType;
|
this.ObjectID = rhs.ObjectID;
|
this.PropertyID = rhs.PropertyID;
|
this.PropertyValue = rhs.PropertyValue;
|
}
|
|
/// <summary>
|
/// 关联类型
|
/// </summary>
|
public string ObjectType
|
{
|
get { return _objectType; }
|
set { _objectType = value; }
|
}
|
private string _objectType;
|
|
/// <summary>
|
/// 关联标识
|
/// </summary>
|
public long ObjectID
|
{
|
get { return _objectid; }
|
set { _objectid = value; }
|
}
|
private long _objectid;
|
|
/// <summary>
|
/// 属性标识
|
/// </summary>
|
public long PropertyID
|
{
|
get { return _propertyId; }
|
set { _propertyId = value; }
|
}
|
private long _propertyId;
|
|
/// <summary>
|
/// 属性值
|
/// </summary>
|
public string PropertyValue
|
{
|
get { return _propertyValue; }
|
set { _propertyValue = value; }
|
}
|
private string _propertyValue;
|
|
/// <summary>
|
///
|
/// </summary>
|
public SpecialPropertyValue Clone()
|
{
|
return (SpecialPropertyValue)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|