where('deleteTime', 0) ->find(); } /** * 检查设备是否在线 * @param int $deviceId 设备ID * @return bool */ public static function isOnline($deviceId) { $device = self::where('id', $deviceId) ->where('deleteTime', 0) ->find(); return $device && $device['alive'] == 1; } }