using Yw.Entity; namespace HStation.Entity { /// /// 业务站 /// [SysType("xhs_pumpmain")] [SugarTable("xhs_pumpmain")] public class PumpMain : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { /// /// /// public PumpMain() { } /// /// /// public PumpMain(PumpMain rhs) : base(rhs) { this.ID = rhs.ID; this.PumpSeriesID = rhs.PumpSeriesID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.RatedEfficiency = rhs.RatedEfficiency; this.RatedPower = rhs.RatedPower; this.Erosion = rhs.Erosion; this.D2 = rhs.D2; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.RatedSpeed = rhs.RatedSpeed; this.RatedHead = rhs.RatedHead; this.RatedFlow = rhs.RatedFlow; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 泵系列ID /// public long PumpSeriesID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 额定转速 /// public double RatedSpeed { get; set; } /// /// 额定流量 /// public double RatedFlow { get; set; } /// /// 额定扬程 /// public double RatedHead { get; set; } /// /// 额定效率 /// public double RatedEfficiency { get; set; } /// /// 额定功率 /// public double RatedPower { get; set; } /// /// 气蚀 /// public double Erosion { get; set; } /// /// 叶轮外径 /// public double D2 { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpMain Clone() { return (PumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }