using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
namespace IStation.Model
{
///
/// 特殊属性/附加属性 映射
///
public class SpecialPropertyMapping : System.ICloneable
{
///
///
///
public SpecialPropertyMapping() { }
///
///
///
public SpecialPropertyMapping(SpecialPropertyMapping rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.PropertyID = rhs.PropertyID;
this.CatalogID = rhs.CatalogID;
}
///
///
///
public void Reset(SpecialPropertyMapping rhs)
{
this.ID = rhs.ID;
this.CorpID= rhs.CorpID;
this.PropertyID = rhs.PropertyID;
this.CatalogID = rhs.CatalogID;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 属性标识
///
public long PropertyID { get; set; }
///
/// 类别标识
///
public long CatalogID { get; set; }
///
///
///
public SpecialPropertyMapping Clone()
{
return (SpecialPropertyMapping)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}