lixiaojun
2022-08-03 aa5aa380cb4e3f63b2e98c5e686b69becefce332
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
using Microsoft.AspNetCore.Mvc;
using System.Net;
using System.Net.Http.Headers;
using Microsoft.Extensions.Hosting.Internal;
using Microsoft.AspNetCore.Http.Extensions;
using IStation.Untity;
using Furion.DynamicApiController;
using System.ComponentModel.DataAnnotations;
using Mapster;
using IStation.Calculation;
using IStation.Model;
 
namespace IStation.Application
{
    /// <summary>
    /// MonitorWeekRecord
    /// </summary>
    [Route("Run/MonitorWeekRecord")]
    [ApiDescriptionSettings("Run", Name = "监测周记录", Order = 960)]
    public class MonitorWeekRecord_Controller : IDynamicApiController 
    {
        //服务
        private readonly Service.MonitorWeekRecord _service = new Service.MonitorWeekRecord();
 
        /// <summary>
        /// 通过 MonitorPointID 获取最近一条数据
        /// </summary>
        [Route("GetLastRecordByMonitorPointID@V1.0")]
        [HttpGet]
        public List<MonitorWeekRecordDto> GetLastRecordByMonitorPointID([FromQuery][Required] MonitorPointIDUnderCorpInput input)
        {
            var list = _service.GetLastRecord(input.CorpID, input.MonitorPointID);
            var vm_list = list?.Select(x => x.Adapt<Model.MonitorWeekRecordPure, MonitorWeekRecordDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 MonitorPointIds  获取最近一条数据
        /// </summary>
        [Route("GetLastRecordByMonitorPointIds@V1.0")]
        [HttpGet]
        public List<MonitorWeekRecordDto> GetLastRecordByMonitorPointIds([FromQuery][Required] MonitorPointIdsUnderCorpInput input)
        {
            var ids = LongListHelper.ToList(input.MonitorPointIds);
            var list = _service.GetLastRecord(input.CorpID, ids);
            var vm_list = list?.Select(x => x.Adapt<Model.MonitorWeekRecordPure, MonitorWeekRecordDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 SignalID  获取最近一条数据
        /// </summary>
        [Route("GetLastRecordBySignalID@V1.0")]
        [HttpGet]
        public MonitorWeekRecordDto GetLastRecordBySignalID([FromQuery][Required] SignalIDUnderCorpInput input)
        {
            var model = _service.GetLastRecord(input.CorpID, input.MonitorPointID, input.SignalID);
            return model?.Adapt<Model.MonitorWeekRecordPure, MonitorWeekRecordDto>();
        }
 
        /// <summary>
        /// 通过 SignalIds  获取最近一条数据
        /// </summary>
        [Route("GetLastRecordBySignalIds@V1.0")]
        [HttpGet]
        public List<MonitorWeekRecordDto> GetLastRecordBySignalIds([FromQuery][Required] SignalIdsUnderCorpInput input)
        {
            var ids = LongListHelper.ToList(input.SignalIds);
            var list = _service.GetLastRecord(input.CorpID, input.MonitorPointID, ids);
            var vm_list = list?.Select(x => x.Adapt<Model.MonitorWeekRecordPure, MonitorWeekRecordDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 MonitorPointID 获取
        /// </summary>
        [Route("GetByMonitorPointID@V1.0")]
        [HttpGet]
        public List<MonitorWeekRecordDto> GetByMonitorPointID([FromQuery][Required] MonitorPointIDUnderCorpInput input)
        {
            var list = _service.GetByMonitorPointID(input.CorpID, input.MonitorPointID);
            var vm_list = list?.Select(x => x.Adapt<Model.MonitorWeekRecord, MonitorWeekRecordDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 补录一条
        /// </summary>
        [Route("InsertSupplement@V1.0")]
        [HttpPost]
        public bool InsertSupplement([Required] SupplementMonitorWeekRecordInput input)
        {
            var monitor = new Service.MonitorPoint().GetExSignalWithSignalTypeByID(input.CorpID, input.MonitorPointID);
            if (monitor.CronType != Model.Monitor.eCronType.EachWeek)
            {
                return false;
            }
            var bol = false;
            var dataTime = DateTime.Now;
            switch (monitor.MonitorType)
            {
                case Model.eMonitorType.General:
                    {
                        var signal = monitor.SignalList?.FirstOrDefault();
                        if (signal != null)
                        {
                            var data_status = new List<string>();
                            var data_value = MonitorHandleHelper.Handle(monitor, signal, lastRecord: null, input.SrcTime, input.SrcValue, data_status);
                            if (!string.IsNullOrEmpty(data_value))
                            {
                                var record = new Model.MonitorWeekRecordPure();
                                record.CorpID = input.CorpID;
                                record.MonitorPointID = input.MonitorPointID;
                                record.SignalID = signal.ID;
                                record.RecordType = monitor.MonitorType;
                                record.SrcTime = input.SrcTime;
                                record.SrcValue = input.SrcValue;
                                record.DataTime = dataTime;
                                record.DataValue = data_value;
                                record.DataStatus = data_status;
                                record.StartDay = input.StartDay.Date;
                                record.EndDay = input.EndDay.Date;
                                bol = _service.InsertSupplement(record);
                            }
                        }
                    }
                    break;
                case Model.eMonitorType.Vibration:
                    {
                        var sub_record_list = AddMonitorSubRecordInput.ToList(input.SrcValue);
                        if (sub_record_list != null && sub_record_list.Count > 0)
                        {
                            var record_list = new List<Model.MonitorWeekRecordPure>();
                            foreach (var sub_record in sub_record_list)
                            {
                                var signal = monitor.SignalList?.FirstOrDefault(x => x.ID == sub_record.SignalID);
                                if (signal == null)
                                    continue;
                                var data_status = new List<string>();
                                var data_value = MonitorHandleHelper.Handle(monitor, signal, lastRecord: null, input.SrcTime, sub_record.SrcValue, data_status);
                                if (string.IsNullOrEmpty(data_value))
                                    continue;
                                var record = new Model.MonitorWeekRecordPure();
                                record.CorpID = input.CorpID;
                                record.MonitorPointID = input.MonitorPointID;
                                record.SignalID = signal.ID;
                                record.RecordType = monitor.MonitorType;
                                record.SrcTime = input.SrcTime;
                                record.SrcValue = sub_record.SrcValue;
                                record.DataTime = dataTime;
                                record.DataValue = data_value;
                                record.DataStatus = data_status;
                                record.StartDay = input.StartDay.Date;
                                record.EndDay = input.EndDay.Date;
                                record_list.Add(record);
                            }
                            if (record_list.Count > 0)
                            {
                                bol = _service.InsertsSupplement(record_list);
                            }
                        }
                    }
                    break;
                default: break;
            }
 
            return bol;
        }
 
        /// <summary>
        /// 补录多条
        /// </summary>
        [Route("InsertsSupplement@V1.0")]
        [HttpPost]
        public bool InsertsSupplement([Required] List<SupplementMonitorWeekRecordInput> list)
        {
            var corpIds = list.Select(x => x.CorpID).Distinct().ToList();
            if (corpIds.Count > 1)
            {
                return false;
            }
 
            var dataTime = DateTime.Now;
            var record_list = new List<Model.MonitorWeekRecordPure>();
            foreach (var item in list)
            {
                var monitor = new Service.MonitorPoint().GetExSignalWithSignalTypeByID(item.CorpID, item.MonitorPointID);
                if (monitor.CronType != Model.Monitor.eCronType.EachWeek)
                {
                    continue;
                }
                switch (monitor.MonitorType)
                {
                    case Model.eMonitorType.General:
                        {
                            var signal = monitor.SignalList?.FirstOrDefault();
                            if (signal != null)
                            {
                                var data_status = new List<string>();
                                var data_value = MonitorHandleHelper.Handle(monitor, signal, lastRecord: null, item.SrcTime, item.SrcValue, data_status);
                                if (!string.IsNullOrEmpty(data_value))
                                {
                                    var record = new Model.MonitorWeekRecordPure();
                                    record.CorpID = item.CorpID;
                                    record.MonitorPointID = item.MonitorPointID;
                                    record.SignalID = signal.ID;
                                    record.RecordType = monitor.MonitorType;
                                    record.SrcTime = item.SrcTime;
                                    record.SrcValue = item.SrcValue;
                                    record.DataTime = dataTime;
                                    record.DataValue = data_value;
                                    record.DataStatus = data_status;
                                    record.StartDay = item.StartDay.Date;
                                    record.EndDay = item.EndDay.Date;
                                    record_list.Add(record);
                                }
                            }
                        }
                        break;
                    case Model.eMonitorType.Vibration:
                        {
                            var sub_record_list = AddMonitorSubRecordInput.ToList(item.SrcValue);
                            if (sub_record_list != null && sub_record_list.Count > 0)
                            {
                                foreach (var sub_record in sub_record_list)
                                {
                                    var signal = monitor.SignalList?.FirstOrDefault(x => x.ID == sub_record.SignalID);
                                    if (signal == null)
                                        continue;
                                    var data_status = new List<string>();
                                    var data_value = MonitorHandleHelper.Handle(monitor, signal, lastRecord: null, item.SrcTime, sub_record.SrcValue, data_status);
                                    if (string.IsNullOrEmpty(data_value))
                                        continue;
                                    var record = new Model.MonitorWeekRecordPure();
                                    record.CorpID = item.CorpID;
                                    record.MonitorPointID = item.MonitorPointID;
                                    record.SignalID = signal.ID;
                                    record.RecordType = monitor.MonitorType;
                                    record.SrcTime = item.SrcTime;
                                    record.SrcValue = sub_record.SrcValue;
                                    record.DataTime = dataTime;
                                    record.DataValue = data_value;
                                    record.DataStatus = data_status;
                                    record.StartDay = item.StartDay.Date;
                                    record.EndDay = item.EndDay.Date;
                                    record_list.Add(record);
                                }
                            }
                        }
                        break;
                    default: break;
                }
            }
 
            if (record_list.Count < 1)
            {
                return false;
            }
            var bol = _service.InsertsSupplement(record_list);
            return bol;
        }
 
    }
}