using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
/// 泵产品映射
|
/// </summary>
|
[SysType("assets_pump_main_partmapping")]
|
public class AssetsPumpMainAndPartMapping : BaseModel, System.ICloneable
|
{
|
public AssetsPumpMainAndPartMapping()
|
{ }
|
|
public AssetsPumpMainAndPartMapping(AssetsPumpMainAndPartMapping rhs)
|
{
|
this.ID = rhs.ID;
|
this.PartID = rhs.PartID;
|
this.SeriesID = rhs.SeriesID;
|
this.MainID = rhs.MainID;
|
}
|
|
public void Reset(AssetsPumpMainAndPartMapping rhs)
|
{
|
this.PartID = rhs.PartID;
|
this.MainID = rhs.MainID;
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
}
|
|
/// <summary>
|
/// 系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 型号ID
|
/// </summary>
|
public long MainID { get; set; }
|
|
/// <summary>
|
/// 产品ID
|
/// </summary>
|
public long PartID { get; set; }
|
|
public AssetsPumpMain Clone()
|
{
|
return (AssetsPumpMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|