ningshuxia
2022-10-31 09f3cdf4eec25526c4e5b924b67f8cfd4a089fec
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Calculation.Eta.Model
{
    /// <summary>
    /// 
    /// </summary>
     public class StationAnaResult
    {
        /// <summary>
        /// 
        /// </summary>
        /// <param name="CorpID"></param>
        /// <param name="context"></param>
        public StationAnaResult(long CorpID, IStation.Model.EtaStationAnalyContextItem context)
        {
            this._context = context;
 
            _result = new IStation.Model.EtaMultiRealRecordPure();
            _result.CorpID = CorpID;
            _result.ObjectType = IStation.ObjectType.Station;
            _result.ObjectID = context.ID;
            _result.RunningCount = 0; 
            _result.AnalyStatus = IStation.Model.Eta.eAnalyStatus.Unkonw;
 
            //if (context.Record.Run == null)
            //{
            //    _result.RSa = 0;
            //    _result.AnalyStatus = IStation.Model.Eta.eAnalyStatus.Error;
            //}
            //else
            //{
            //    _result.AnalyStatus = IStation.Model.Eta.eAnalyStatus.Normal;
            //    _result.CopyAnaPara(context.Record);
            //    _result.RunningCount = context.Record.RunningCount;
            //    _result.RunningFlag = context.Record.RunningFlag;
            //    _result.RSa = context.Record.RSa;
            //}
        }
        /// <summary>
        /// 
        /// </summary>
        protected IStation.Model.EtaStationAnalyContextItem _context = null;
        /// <summary>
        /// 
        /// </summary>
        public IStation.Model.EtaStationAnalyContextItem Context
        {
            get
            {
                return _context;
            }
            set
            {
                _context = value;
            }
        }
        /// <summary>
        /// 
        /// </summary>
        protected IStation.Model.EtaMultiRealRecordPure _result  = null;
        /// <summary>
        /// 
        /// </summary>
        public IStation.Model.EtaMultiRealRecordPure AnaResult
        {
            get
            {
                return _result;
            }
            set
            {
                _result = value;
            }
        }
 
 
        /// <summary>
        /// 
        /// </summary>
        private int _serialNO = 0;
        /// <summary>
        /// 
        /// </summary>
        public int SerialNO
        {
            get
            {
                return _serialNO;
            }
            set
            {
                _serialNO = value;
            }
        }
 
        /// <summary>
        /// 
        /// </summary>
        private long _station_id = 0;
        /// <summary>
        /// 
        /// </summary>
        public long StationID
        {
            get
            {
                return _station_id;
            }
            set
            {
                _station_id = value;
            }
        }
        /// <summary>
        /// 
        /// </summary>
        private long _pipe_line_id = 0;
        /// <summary>
        /// 
        /// </summary>
        public long PipeLineID
        {
            get
            {
                return _pipe_line_id;
            }
            set
            {
                _pipe_line_id = value;
            }
        }
 
        #region 测点
        private long monitor_id_pump_flow_array = 0;// 流量计
        /// <summary>
        /// 
        /// </summary>
        public long MonitorID_PumpFlow
        {
            get { return monitor_id_pump_flow_array; }
            set { monitor_id_pump_flow_array = value; }
        }
        #endregion
 
        #region  分析结果
        bool _ana_flow_ok = false;
        /// <summary>
        /// 
        /// </summary>
        public bool Ana_flow_ok
        {
            get { return _ana_flow_ok; }
            set { _ana_flow_ok = value; }
        }
 
        bool _ana_head_ok = false;
        /// <summary>
        /// 
        /// </summary>
        public bool Ana_head_ok
        {
            get { return _ana_head_ok; }
            set { _ana_head_ok = value; }
        }
 
        bool _ana_eta_ok = false;
        /// <summary>
        /// 
        /// </summary>
        public bool Ana_eta_ok
        {
            get { return _ana_eta_ok; }
            set { _ana_eta_ok = value; }
        } 
        #endregion
 
    }
}