using Yw.Model;
namespace HStation.Model
{
///
/// 泵产品映射
///
[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;
}
///
/// 泵系列ID
///
public long SeriesID { get; set; }
///
/// 泵型号ID
///
public long PumpID { get; set; }
///
/// 泵产品ID
///
public long PumpPartID { get; set; }
public AssetsPumpMain Clone()
{
return (AssetsPumpMain)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}