mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
14 lines
177 B
PHP
14 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 节点审计规则关联.
|
|
*/
|
|
class NodeRule extends Model
|
|
{
|
|
protected $table = 'node_rule';
|
|
}
|