@@ -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'){
@@ -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
return '离线';
return '在线';