mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 10:12:11 +08:00
38 lines
786 B
PHP
38 lines
786 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $admin_user_id
|
|
* @property string $username
|
|
* @property string $ip
|
|
* @property string $os
|
|
* @property string $browser
|
|
* @property int $status
|
|
* @property string $message
|
|
* @property string $login_time
|
|
* @property string $remark
|
|
*/
|
|
class AdminUserLoginLog extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'admin_user_login_log';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'admin_user_id' => 'integer', 'status' => 'integer'];
|
|
}
|