lixiaojun
2024-08-01 f1b384048a3784aa6340e4581731947eec416342
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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; }
    }
}