| | |
| | | /// </summary> |
| | | [SysType("assets_pipe_efficient")] |
| | | [SugarTable("assets_pipe_coefficient")] |
| | | public class AssetsPipeCoefficient : BaseEntity, ISorter, System.ICloneable |
| | | public class AssetsPipeCoefficient : BaseEntity, System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AssetsPipeCoefficient() |
| | | { } |
| | | |
| | | public AssetsPipeCoefficient(AssetsPipeCoefficient rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.PipeLineID = rhs.PipeLineID; |
| | | this.Name = rhs.Name; |
| | | this.Caliber = rhs.Caliber; |
| | | this.Material = rhs.Material; |
| | | this.eAlgorithmType = rhs.eAlgorithmType; |
| | | this.StartValue = rhs.StartValue; |
| | | this.EndValue = rhs.EndValue; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | |
| | | public long PipeLineID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 口径 |
| | | /// </summary> |
| | | public double? Caliber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | | /// </summary> |
| | | public string Material { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 局阻系数 |
| | | /// </summary> |
| | | public double MinorLoss { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 开始值 |
| | | /// </summary> |
| | | public string StartValue { get; set; } |
| | |
| | | public string EndValue { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | | /// </summary> |
| | | public int SortCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 说明 |
| | | /// </summary> |
| | | public string Description { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AssetsPumpGroupAndMainMap Clone() |
| | | public AssetsPumpGroupAndMainMapping Clone() |
| | | { |
| | | return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); |
| | | return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |