using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.EnginePump; namespace IStation.Application { /// /// /// public class DemoEnginePumpRatedParasDto { /// /// /// public DemoEnginePumpRatedParasDto() { } /// /// /// public DemoEnginePumpRatedParasDto(Model.EnginePump rhs) { this.LayoutType = rhs.LayoutType; this.SupportType = rhs.SupportType; this.CouplerType = rhs.CouplerType; this.IsGearbox = rhs.IsGearbox; } /// /// 布置类型 /// public eLayoutType LayoutType { get; set; } /// /// 支撑类型 /// public eSupportType SupportType { get; set; } /// /// 联轴器类型 /// public eCouplerType CouplerType { get; set; } /// /// 是否存在变速箱 /// public bool IsGearbox { get; set; } } }