first commit

This commit is contained in:
Mr.Qin
2022-08-19 19:48:37 +08:00
commit afdd648b65
3275 changed files with 631084 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?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的函数体和模板为空请自行编写代码
*/
}