Files
nl-admin-api/app/Models/LoginLogModel.php
2026-08-10 18:32:06 +08:00

16 lines
228 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models;
use App\BaseApp\BaseModel;
/**
* 登录日志模型(仅 created_at无软删
*/
class LoginLogModel extends BaseModel
{
protected $table = 'login_log';
protected $guarded = [];
}