namespace IStation.Model
{
///
/// 机泵
///
public partial class EnginePump : JsonModel, System.ICloneable
{
///
///
///
public EnginePump() { }
///
///
///
public EnginePump(EnginePump rhs)
{
this.LayoutType = rhs.LayoutType;
this.SupportType = rhs.SupportType;
this.CouplerType = rhs.CouplerType;
}
///
///
///
public void Reset(EnginePump rhs)
{
this.LayoutType = rhs.LayoutType;
this.SupportType = rhs.SupportType;
this.CouplerType = rhs.CouplerType;
}
///
/// 布置类型
///
public eLayoutType LayoutType { get; set; }
///
/// 支撑类型
///
public eSupportType SupportType { get; set; }
///
/// 联轴器类型
///
public eCouplerType CouplerType { get; set; }
///
///
///
public EnginePump Clone()
{
return new EnginePump(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}