Files
nexusphp/app/Models/AgentAllow.php
xiaomlove 0c5f3d935d exam-user
2021-04-25 02:12:14 +08:00

17 lines
419 B
PHP

<?php
namespace App\Models;
class AgentAllow extends NexusModel
{
protected $table = 'agent_allowed_family';
public $timestamps = true;
protected $fillable = [
'family', 'start_name', 'exception', 'allowhttps', 'comment',
'peer_id_pattern', 'peer_id_match_num', 'peer_id_matchtype', 'peer_id_start',
'agent_pattern', 'agent_match_num', 'agent_matchtype', 'agent_start',
];
}