ningshuxia
2022-12-01 ad494f13d2ddf31f142cf7fb908b3a6e90395a1a
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
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;
using Microsoft.AspNetCore.Authorization;
 
namespace IStation.Application
{
    /// <summary>
    /// MonitorWeekRecord
    /// </summary>
    [Route("Run/MonitorWeekRecord/Mgr")]
    [ApiDescriptionSettings("Run", Name = "监测周记录(管理)", Order = 960)]
    public class MonitorWeekRecord_MgrController : IDynamicApiController
    {
        //服务
        private readonly Service.MonitorWeekRecord _service = new Service.MonitorWeekRecord();
 
        #region 通过测点标识获取
 
        /// <summary>
        /// 通过 MonitorPointID 获取(未进行单位转换,使用的是系统单位)
        /// </summary>
        [Route("GetByMonitorPointID@V1.0")]
        [HttpGet]
        public List<MonitorWeekRecordMgrDto> GetByMonitorPointID_V1_0([FromQuery][Required] MonitorPointIDUnderCorpInput input)
        {
            var list = _service.GetByMonitorPointID(input.CorpID, input.MonitorPointID);
            var vmList = list?.Select(x => new MonitorWeekRecordMgrDto(x)).ToList();
            return vmList;
        }
 
        #endregion
 
        #region 更新
 
        /// <summary>
        /// 更新
        /// </summary>
        [Route("Update@V1.0")]
        [HttpPut]
        public bool Update([Required] UpdateMonitorWeekRecordInput input)
        {
            var model = new Model.MonitorWeekRecord()
            {
                ID = input.ID,
                CorpID = input.CorpID,
                MonitorPointID = input.MonitorPointID,
                SignalID = input.SignalID,
                RecordType = input.RecordType,
                StartDay = input.StartDay,
                EndDay = input.EndDay,
                SrcTime = input.SrcTime,
                SrcValue = input.SrcValue,
                DataTime = input.DataTime,
                DataValue = input.DataValue,
                DataStatus = input.DataStatus
            };
            var bol = _service.Update(model);
            return bol;
        }
 
        /// <summary>
        /// 批量更新
        /// </summary>
        [Route("Updates@V1.0")]
        [HttpPut]
        public bool Updates([Required] List<UpdateMonitorWeekRecordInput> list)
        {
            if (list == null || list.Count < 1)
                return default;
            var modelList = list.Select(x => new Model.MonitorWeekRecord()
            {
                ID = x.ID,
                CorpID = x.CorpID,
                MonitorPointID = x.MonitorPointID,
                SignalID = x.SignalID,
                RecordType = x.RecordType,
                StartDay= x.StartDay,
                EndDay= x.EndDay,
                SrcTime = x.SrcTime,
                SrcValue = x.SrcValue,
                DataTime = x.DataTime,
                DataValue = x.DataValue,
                DataStatus = x.DataStatus
            }).ToList();
            var bol = _service.Updates(modelList);
            return bol;
        }
 
        #endregion
 
        #region 补录
 
        /// <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;
        }
 
        #endregion
 
        #region 重录
 
        /// <summary>
        /// 重录一条(重录会删除已存在的记录)
        /// </summary>
        [Route("InsertAgain@V1.0")]
        [HttpPost]
        public bool InsertAgain([Required] AgainMonitorWeekRecordInput 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.InsertAgain(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.InsertsAgain(record_list);
                            }
                        }
                    }
                    break;
                default: break;
            }
 
            return bol;
        }
 
        /// <summary>
        /// 重录多条(重录会删除已存在的记录)
        /// </summary>
        [Route("InsertsAgain@V1.0")]
        [HttpPost]
        public bool InsertsAgain([Required] List<AgainMonitorWeekRecordInput> 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.InsertsAgain(record_list);
            return bol;
        }
 
        #endregion
 
    }
}