using Yw.Model; namespace HStation.Model { /// /// 管道管理 /// [SysType("xhs_pipelineManage")] [SugarTable("xhs_pipelineManage")] public class PipeLineManage : BaseModel, ISorter, System.ICloneable { /// /// /// public PipeLineManage() { } public PipeLineManage(PipeLineManage rhs) { this.Caliber = rhs.Caliber; this.ID = rhs.ID; this.Name = rhs.Name; this.Material = rhs.Material; this.Manning = rhs.Manning; this.Coefficient = rhs.Coefficient; this.Darcy = rhs.Darcy; this.Hazen = rhs.Hazen; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } public void Reset(PipeLineManage rhs) { this.Caliber = rhs.Caliber; this.ID = rhs.ID; this.Name = rhs.Name; this.Material = rhs.Material; this.Manning = rhs.Manning; this.Coefficient = rhs.Coefficient; this.Darcy = rhs.Darcy; this.Hazen = rhs.Hazen; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 口径 /// public string Caliber { get; set; } /// /// 材料 /// public string Material { get; set; } /// /// 系数 /// public double? Coefficient { get; set; } /// ///Hazen /// public double Hazen { get; set; } /// ///Darcy /// public double? Darcy { get; set; } /// ///Manning /// public double? Manning { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpGroupAndMainMap Clone() { return (PumpGroupAndMainMap)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }