using Yw.Model;
|
namespace HStation.Model
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SysType("assets-package-part-prop-content")]
|
public class AssetsPackagePropContent : BaseModel , System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackagePropContent() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackagePropContent(AssetsPackagePropContent rhs) : base(rhs)
|
{
|
this.SeriesID=rhs.SeriesID;
|
this.PartID=rhs.PartID;
|
this.PropID=rhs.PropID;
|
this.PropValue=rhs.PropValue;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(AssetsPackagePropContent rhs)
|
{
|
this.ID=rhs.ID;
|
this.SeriesID=rhs.SeriesID;
|
this.PartID=rhs.PartID;
|
this.PropID=rhs.PropID;
|
this.PropValue=rhs.PropValue;
|
}
|
|
|
/// <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 AssetsPackagePropContent Clone()
|
{
|
return (AssetsPackagePropContent)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|
|
|
|
|