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