using Yw.Model;
namespace HStation.Model
{
///
///
///
[SysType("assets_package_pump_mapping")]
public class AssetsPackagePumpMapping : BaseModel, System.ICloneable
{
///
///
///
public AssetsPackagePumpMapping()
{ }
///
///
///
public AssetsPackagePumpMapping(AssetsPackagePumpMapping rhs) : base(rhs)
{
this.PumpMainID = rhs.PumpMainID;
this.EquipmentMainID = rhs.EquipmentMainID;
this.PumpOtherName = rhs.PumpOtherName;
}
public void Reset(AssetsPackagePumpMapping rhs)
{
this.ID = rhs.ID;
this.PumpMainID = rhs.PumpMainID;
this.EquipmentMainID = rhs.EquipmentMainID;
this.PumpOtherName = rhs.PumpOtherName;
}
///
/// 泵型号ID
///
public long PumpMainID { get; set; }
///
/// 泵型号别名
///
public string PumpOtherName { get; set; }
///
/// 成套设备ID
///
public long EquipmentMainID { get; set; }
///
///
///
public AssetsPumpSeries Clone()
{
return (AssetsPumpSeries)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}