mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 22:20:57 +08:00
11 lines
180 B
PHP
11 lines
180 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class UserBanLog extends NexusModel
|
|
{
|
|
protected $table = 'user_ban_logs';
|
|
|
|
protected $fillable = ['uid', 'username', 'operator', 'reason'];
|
|
}
|