using Yw.Entity;
namespace HStation.Entity
{
///
///
///
[SysType("assets_package_pump_mapping")]
[SugarTable("assets_package_pump_mapping")]
public class AssetsPackagePumpMapping : BaseEntity, System.ICloneable
{
///
///
///
public AssetsPackagePumpMapping()
{ }
///
///
///
public AssetsPackagePumpMapping(AssetsPackagePumpMapping rhs) : base(rhs)
{
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();
}
}
}