| | |
| | | public AssetsPipeFactorStdDto(Model.AssetsPipeFactor 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 string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 算法类型 |
| | | /// </summary> |
| | | public eAlgorithmType eAlgorithmType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 管道ID |
| | | /// </summary> |
| | | public long PipeLineID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 口径 |