duheng
2024-11-14 60908c00556f4f53d82f5588ae3013f80c443590
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
62
63
64
65
66
67
68
69
70
71
72
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 仪表视图
    /// </summary>
    public class HydroInstrumentViewModel : HydroJunctionViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroInstrumentViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroInstrumentViewModel(Yw.Model.HydroInstrumentInfo rhs, Yw.Model.HydroModelInfo hydroInfo) : base(rhs, hydroInfo)
        {
            this.Vmo = rhs;
        }
 
 
        /// <summary>
        /// 自由压力
        /// </summary>
        [Category("计算结果")]
        [DisplayName("自由压力")]
        [Display(Name = "自由压力(m)")]
        [DisplayUnit("m")]
        [HydroCalcuPro]
        [PropertyOrder(10001)]
        [ShowEditor(false)]
        [Browsable(false)]
        public override double? CalcuPress { get; set; }
 
        /// <summary>
        /// 绝对压力
        /// </summary>
        [Category("计算结果")]
        [DisplayName("绝对压力")]
        [PropertyOrder(10002)]
        [DisplayUnit("m")]
        [HydroCalcuPro]
        [ShowEditor(false)]
        [Browsable(false)]
        public override double? CalcuHead { get; set; }
 
        /// <summary>
        /// 需水量
        /// </summary>
        [Category("计算结果")]
        [DisplayName("需水量")]
        [PropertyOrder(10003)]
        [DisplayUnit("m³/h")]
        [HydroCalcuPro]
        [ShowEditor(false)]
        [Browsable(false)]
        public override double? CalcuDemand { get; set; }
 
 
        /// <summary>
        /// 
        /// </summary>
        [Browsable(false)]
        public new Yw.Model.HydroInstrumentInfo Vmo { get; set; }
 
 
 
 
 
 
    }
}