namespace Yw.WinFrmUI
|
{
|
/// <summary>
|
/// 管道属性视图
|
/// </summary>
|
public class HydroPipePropertyViewModel : HydroParterPropertyViewModel
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public HydroPipePropertyViewModel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public HydroPipePropertyViewModel(Yw.Model.HydroPipeInfo rhs) : base(rhs)
|
{
|
|
}
|
|
//
|
// 摘要:
|
// 上游节点
|
public string StartCode { get; set; }
|
|
//
|
// 摘要:
|
// 下游节点
|
public string EndCode { get; set; }
|
|
//
|
// 摘要:
|
// 管段状态
|
public string LinkStatus { get; set; }
|
|
//
|
// 摘要:
|
// 直径
|
public double Diameter { get; set; }
|
|
//
|
// 摘要:
|
// 长度
|
public double Length { get; set; }
|
|
//
|
// 摘要:
|
// 粗糙系数
|
public double Roughness { get; set; }
|
|
//
|
// 摘要:
|
// 局部阻力系数
|
public double MinorLoss { get; set; }
|
}
|
}
|