Files
ProxyPanel/app/Models/EmailFilter.php
2020-08-26 00:37:56 +08:00

15 lines
232 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'];
}