using Yw.Model;
|
namespace HStation.Model
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SysType("assets-package-main-part-mapping")]
|
public class AssetsPackageMainAndPartMapping : BaseModel , System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackageMainAndPartMapping() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackageMainAndPartMapping(AssetsPackageMainAndPartMapping rhs) : base(rhs)
|
{
|
this.SeriesID=rhs.SeriesID;
|
this.MainID=rhs.MainID;
|
this.PartID=rhs.PartID;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(AssetsPackageMainAndPartMapping rhs)
|
{
|
this.ID=rhs.ID;
|
this.SeriesID=rhs.SeriesID;
|
this.MainID=rhs.MainID;
|
this.PartID=rhs.PartID;
|
}
|
|
|
/// <summary>
|
/// 系列ID
|
///</summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 型号ID
|
///</summary>
|
public long MainID { get; set; }
|
|
/// <summary>
|
/// 产品ID
|
///</summary>
|
public long PartID { get; set; }
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackageMainAndPartMapping Clone()
|
{
|
return (AssetsPackageMainAndPartMapping)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|
|
|
|
|