mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-12 23:48:53 +00:00
32 lines
930 B
PHP
32 lines
930 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* SS节点负载情况
|
|
*
|
|
* @property int $id
|
|
* @property int $node_id 节点ID
|
|
* @property int $uptime 后端存活时长,单位秒
|
|
* @property string $load 负载
|
|
* @property int $log_time 记录时间
|
|
* @method static Builder|SsNodeInfo newModelQuery()
|
|
* @method static Builder|SsNodeInfo newQuery()
|
|
* @method static Builder|SsNodeInfo query()
|
|
* @method static Builder|SsNodeInfo whereId($value)
|
|
* @method static Builder|SsNodeInfo whereLoad($value)
|
|
* @method static Builder|SsNodeInfo whereLogTime($value)
|
|
* @method static Builder|SsNodeInfo whereNodeId($value)
|
|
* @method static Builder|SsNodeInfo whereUptime($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class SsNodeInfo extends Model {
|
|
public $timestamps = false;
|
|
protected $table = 'ss_node_info';
|
|
protected $primaryKey = 'id';
|
|
|
|
}
|