mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
23 lines
403 B
PHP
23 lines
403 B
PHP
<?php
|
|
|
|
namespace App\Http\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 用户每日流量统计
|
|
* Class UserTrafficDaily
|
|
*
|
|
* @package App\Http\Models
|
|
* @mixin \Eloquent
|
|
*/
|
|
class UserTrafficDaily extends Model
|
|
{
|
|
protected $table = 'user_traffic_daily';
|
|
protected $primaryKey = 'id';
|
|
|
|
function node()
|
|
{
|
|
return $this->hasOne(SsNode::class, 'id', 'node_id');
|
|
}
|
|
} |