Files
ProxyPanel/app/Models/EmailFilter.php
2020-09-12 13:40:20 +08:00

18 lines
243 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 邮箱后缀过滤
*/
class EmailFilter extends Model
{
public $timestamps = false;
protected $table = 'email_filter';
protected $guarded = ['id'];
}