using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Yw.Model; namespace HStation.WinFrmUI { public class CreateXhsSchemePipeChangeViewMdoel { public CreateXhsSchemePipeChangeViewMdoel() { } /// /// 标识 /// public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 材料 /// public string Material { get; set; } // // 摘要: // 直径(mm) [SysProp("Diameter", null)] public double Diameter { get; set; } // // 摘要: // 长度 (m) [SysProp("Length", null)] public double Length { get; set; } // // 摘要: // 粗糙系数 [SysProp("Roughness", null)] public double Roughness { get; set; } // // 摘要: // 局阻系数 [SysProp("MinorLoss", null)] public double MinorLoss { get; set; } /// /// 管段状态 /// public string LinkStatus { get; set; } } }