using Yw.Model; namespace HStation.Model { /// /// 冷却塔系数 /// public class AssetsCoolingFactor : BaseModel, ISorter, System.ICloneable { /// /// /// public AssetsCoolingFactor() { } /// /// /// public AssetsCoolingFactor(AssetsCoolingFactor rhs) : base(rhs) { this.Name = rhs.Name; this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.Coefficient = rhs.Coefficient; this.LowerLimit = rhs.LowerLimit; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// /// public void Reset(AssetsCoolingFactor rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.Coefficient = rhs.Coefficient; this.LowerLimit = rhs.LowerLimit; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 材料 /// public string Material { get; set; } /// /// 口径 /// public double? Caliber { get; set; } /// /// 喷射系数 /// public double Coefficient { get; set; } /// /// 最小压力 m /// public double LowerLimit { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public AssetsCoolingFactor Clone() { return new AssetsCoolingFactor(this); } object ICloneable.Clone() { return this.Clone(); } } }