tongshanglei 2 years ago
parent
commit
8db594706e
2 changed files with 3 additions and 3 deletions
  1. 1 1
      catch/device/model/Station.php
  2. 2 2
      catch/device/model/get/StationGet.php

+ 1 - 1
catch/device/model/Station.php

@@ -130,7 +130,7 @@ class Station extends Model
      */
     public function searchOnlineStateAttr($query, $value, $data)
     {
-        $time=date('Y-m-d H:i:s',time()-300);
+        $time=date('Y-m-d H:i:s',time()-600);
         $config=Env::get('app.station_state');
         
         if($value=='1'){

+ 2 - 2
catch/device/model/get/StationGet.php

@@ -35,7 +35,7 @@ trait StationGet
         }
         $value = strtotime($this->online_time);
         $int=time()-$value;
-        if($int>300){
+        if($int>600){
             return '0';
         }else{
             return '1';
@@ -77,7 +77,7 @@ trait StationGet
         }
         $value = strtotime($this->online_time);
         $int=time()-$value;
-        if($int>300){
+        if($int>600){
             return '离线';
         }else{
             return '在线';