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