likang 2 years ago
parent
commit
c007625989
2 changed files with 4 additions and 1 deletions
  1. 2 0
      catch/api/controller/Api.php
  2. 2 1
      catch/tag_history/model/TagHistory.php

+ 2 - 0
catch/api/controller/Api.php

@@ -41,6 +41,7 @@ class Api extends CatchController
         }
         $data = [];
         foreach ($param['list'] as $item) {
+           $onetime= TagHistory::where("mac",$mac)->where('lable',$item['label'])->order("id","desc")->value("time");
             $data[] = [
                 'mac' => $mac,
                 'lable' => $item['label'],
@@ -52,6 +53,7 @@ class Api extends CatchController
                 'temperature' => empty($item['temperature']) ? 0 : $item['temperature'],
                 //告警
                 'temperWarn' => empty($item['temperWarn']) ? 00 : $item['temperWarn'],
+                "interval_time"=>empty($onetime) ?0:($item['time']-$onetime)
             ];
         }
         $tage = new TagHistory();

+ 2 - 1
catch/tag_history/model/TagHistory.php

@@ -1,6 +1,5 @@
 <?php
 
-
 namespace catchAdmin\tag_history\model;
 
 use catcher\base\CatchModel as Model;
@@ -25,6 +24,8 @@ class TagHistory extends Model
         'move',
         'step',
         'temperature',
+        //间隔时间
+        'interval_time',
         //告警
         'temperWarn',
         // 创建人ID