using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
/// 属性值
|
/// </summary>
|
[SysType("assets_exchanger_part_prop_content")]
|
public class AssetsExchangerPropContent : BaseModel, ITagName, System.ICloneable
|
{
|
public AssetsExchangerPropContent()
|
{ }
|
|
public AssetsExchangerPropContent(AssetsExchangerPropContent rhs)
|
{
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
this.PartID = rhs.PartID;
|
this.PropID = rhs.PropID;
|
this.PropValue = rhs.PropValue;
|
this.TagName = rhs.TagName;
|
}
|
|
public void Reset(AssetsExchangerPropContent rhs)
|
{
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
this.PartID = rhs.PartID;
|
this.PropID = rhs.PropID;
|
this.PropValue = rhs.PropValue;
|
this.TagName = rhs.TagName;
|
}
|
|
/// <summary>
|
/// 系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 产品ID
|
/// </summary>
|
public long PartID { get; set; }
|
|
/// <summary>
|
/// 属性ID
|
/// </summary>
|
public long PropID { get; set; }
|
|
/// <summary>
|
/// 属性值
|
/// </summary>
|
public string PropValue { get; set; }
|
|
/// <summary>
|
/// 标签
|
/// </summary>
|
public string TagName { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpMain Clone()
|
{
|
return (AssetsPumpMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|