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