tangxu
2023-04-21 473084031d410d95db66e81f4d1761f9a2d1b8e5
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
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Model
{
    /// <summary>
    /// 能效测点分析上下文项
    /// </summary>
    public class EtaMonitorPointAnalyContextitem 
    {
        /// <summary>
        /// 
        /// </summary>
        /// <param name="monitorPoint"></param>
        public EtaMonitorPointAnalyContextitem(Model.MonitorPoint monitorPoint)
        {
            this.ObjectID = monitorPoint.ID;
            this.Name = monitorPoint.Name;
            this.Elevation = monitorPoint.Elevation;
            this.PipeDia = monitorPoint.PipeDia;
            this.Flags = monitorPoint.Flags?.ToList();
            this.TagName = monitorPoint.TagName;
            this.UseStatus = monitorPoint.UseStatus;
        }
        /// <summary>
        /// 测点标识
        /// </summary>
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 测点名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 管路标识
        /// </summary>
        public long PipeLineID { get; set; }
 
        /// <summary>
        /// 标高
        /// </summary>    
        public double? Elevation { get; set; }
 
        /// <summary>
        /// 管径(mm)
        /// </summary>    
        public double? PipeDia { get; set; }
 
        /// <summary>
        /// 信号类型
        /// </summary>
        public string SignalType { get; set; }
 
        /// <summary>
        /// 标签列表
        /// </summary>
        public List<string> Flags { get; set; }
 
        /// <summary>
        /// 标签名称
        /// </summary>
        public string TagName { get; set; }
 
        /// <summary>
        /// 数据值
        /// </summary>
        public double DataValue { get; set; }
 
        /// <summary>
        /// 使用状态
        /// </summary>
        public Model.eUseStatus UseStatus { get; set; }
 
 
    }
}