mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 02:58:42 +00:00
24 lines
414 B
PHP
24 lines
414 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
/**
|
|
* 节点每日流量统计
|
|
*/
|
|
class NodeDailyDataFlow extends Model
|
|
{
|
|
public const UPDATED_AT = null;
|
|
|
|
protected $table = 'node_daily_data_flow';
|
|
|
|
protected $guarded = [];
|
|
|
|
public function node(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Node::class);
|
|
}
|
|
}
|