Files
swiftadmin/app/admin/controller/system/LoginLog.php

35 lines
636 B
PHP
Raw Normal View History

2022-08-19 19:48:37 +08:00
<?php
2023-04-25 20:11:49 +08:00
2022-08-19 19:48:37 +08:00
namespace app\admin\controller\system;
use app\AdminController;
2022-11-28 19:11:12 +08:00
use app\common\model\system\AdminLog as LoginLogModel;
2022-08-19 19:48:37 +08:00
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的函数体和模板为空请自行编写代码
*/
}