| 123456789101112131415161718192021222324 |
- <?php
- declare(strict_types=1);
- namespace App\Models;
- class NodeInfoLog extends Model
- {
- protected $connection = 'default';
- protected $table = 'node_info';
- public function getNodeLoad()
- {
- $load = $this->attributes['load'];
- $exp = explode(' ', $load);
- return $exp[0];
- }
- public function getTime()
- {
- $time = $this->attributes['log_time'];
- return date('Y-m-d H:i:s', $time);
- }
- }
|