mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-12 23:48:53 +00:00
19 lines
318 B
PHP
19 lines
318 B
PHP
<?php
|
|
|
|
namespace App\Http\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 敏感词
|
|
* Class SensitiveWords
|
|
*
|
|
* @package App\Http\Models
|
|
* @mixin \Eloquent
|
|
*/
|
|
class SensitiveWords extends Model
|
|
{
|
|
protected $table = 'sensitive_words';
|
|
protected $primaryKey = 'id';
|
|
public $timestamps = false;
|
|
} |