Files
nexusphp/app/Models/AgentAllow.php

17 lines
419 B
PHP
Raw Normal View History

2021-04-02 19:48:41 +08:00
<?php
namespace App\Models;
class AgentAllow extends NexusModel
{
protected $table = 'agent_allowed_family';
2021-04-25 02:12:14 +08:00
public $timestamps = true;
2021-04-02 19:48:41 +08:00
protected $fillable = [
2021-04-16 19:04:01 +08:00
'family', 'start_name', 'exception', 'allowhttps', 'comment',
2021-04-02 19:48:41 +08:00
'peer_id_pattern', 'peer_id_match_num', 'peer_id_matchtype', 'peer_id_start',
'agent_pattern', 'agent_match_num', 'agent_matchtype', 'agent_start',
];
}