mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-21 02:20:54 +08:00
10 lines
111 B
PHP
10 lines
111 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class UserBanLog extends NexusModel
|
||
|
|
{
|
||
|
|
protected $table = 'user_ban_logs';
|
||
|
|
|
||
|
|
}
|