35 lines
663 B
PHP
35 lines
663 B
PHP
|
|
<?php
|
|||
|
|
declare (strict_types = 1);
|
|||
|
|
namespace app\admin\controller\system;
|
|||
|
|
|
|||
|
|
use app\AdminController;
|
|||
|
|
use app\common\model\system\LoginLog as LoginLogModel;
|
|||
|
|
use Webman\Http\Request;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* login_log
|
|||
|
|
* 登录日志
|
|||
|
|
* @author meystack <
|
|||
|
|
* @version 1.0
|
|||
|
|
*/
|
|||
|
|
class LoginLog extends AdminController
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* LoginLog模型对象
|
|||
|
|
* @return void
|
|||
|
|
*/
|
|||
|
|
public function __construct()
|
|||
|
|
{
|
|||
|
|
parent::__construct();
|
|||
|
|
$this->model = new LoginLogModel;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 默认生成的方法为index/add/edit/del/status 五个方法
|
|||
|
|
* 当创建CURD的时候,DIY的函数体和模板为空,请自行编写代码
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|