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
57
58
59
60
61
using Yw.Model.Hydro;
using Yw.Model;
 
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroJunctionPropertyViewModel : HydroParterPropertyViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroJunctionPropertyViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroJunctionPropertyViewModel(Yw.Model.HydroJunctionInfo rhs) : base(rhs)
        {
 
        }
 
        //
        // 摘要:
        //     初始水质
        public double Quality { get; set; }
 
        //
        // 摘要:
        //     2d 位置
        public Position2d Position2d { get; set; }
 
        //
        // 摘要:
        //     3d 位置
        public Position3d Position3d { get; set; }
 
        //
        // 摘要:
        //     流量系数/喷射系数
        public double Coefficient { get; set; }
 
        //
        // 摘要:
        //     标高
        public double Elev { get; set; }
 
        //
        // 摘要:
        //     需水量
        public double? Demand { get; set; }
 
        //
        // 摘要:
        //     需水模式
        public string DemandPattern { get; set; }
 
 
    }
}