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