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
using Yw.Model.Hydro;
using Yw.Model;
 
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 水库属性视图
    /// </summary>
    public class HydroReservoirPropertyViewModel : HydroParterPropertyViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroReservoirPropertyViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroReservoirPropertyViewModel(Yw.Model.HydroReservoirInfo rhs) : base(rhs)
        {
 
        }
 
        //
        // 摘要:
        //     初始水质
        public double Quality { get; set; }
 
        //
        // 摘要:
        //     2d 位置
        public Position2d Position2d { get; set; }
 
        //
        // 摘要:
        //     3d 位置
        public Position3d Position3d { get; set; }
 
        //
        // 摘要:
        //     总水头
        public double Head { get; set; }
 
        //
        // 摘要:
        //     水头模式
        public string HeadPattern { get; set; }
 
    }
}