mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
15 lines
395 B
PHP
15 lines
395 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class AgentAllow extends NexusModel
|
|
{
|
|
protected $table = 'agent_allowed_family';
|
|
|
|
protected $fillable = [
|
|
'family', 'start_name', 'exception', 'allowhttps', 'comment', 'hits',
|
|
'peer_id_pattern', 'peer_id_match_num', 'peer_id_matchtype', 'peer_id_start',
|
|
'agent_pattern', 'agent_match_num', 'agent_matchtype', 'agent_start',
|
|
];
|
|
}
|