using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
///
|
/// </summary>
|
[SysType("assets_package_pump_mapping")]
|
public class AssetsPackagePumpMapping : BaseModel, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPackagePumpMapping()
|
{ }
|
|
/// <summary>
|
///
|
/// </summary>
|
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;
|
}
|
|
/// <summary>
|
/// 泵型号ID
|
/// </summary>
|
public long PumpMainID { get; set; }
|
|
/// <summary>
|
/// 泵型号别名
|
/// </summary>
|
public string PumpOtherName { get; set; }
|
|
/// <summary>
|
/// 成套设备ID
|
/// </summary>
|
public long EquipmentMainID { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpSeries Clone()
|
{
|
return (AssetsPumpSeries)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|