lixiaojun
2024-12-22 6551843c49431dacf67ea26e1ea21bf887a5246c
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
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 工况监测视图
    /// </summary>
    public class HydroWorkingMonitorViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroWorkingMonitorViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroWorkingMonitorViewModel(HydroMonitorValueViewModel rhs)
        {
            this.Relation = rhs.Vmo.Relation;
            this.PropName = rhs.Vmo.PropName;
            this.PropValue = rhs.PropValue;
        }
 
        /// <summary>
        /// 关联构件
        /// Code
        /// </summary>
        public string Relation { get; set; }
 
        /// <summary>
        /// 属性名称
        /// </summary>
        public string PropName { get; set; }
 
        /// <summary>
        /// 属性值
        /// </summary>
        public double? PropValue { get; set; }
 
    }
 
}