mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
30 lines
558 B
PHP
30 lines
558 B
PHP
<?php
|
|
|
|
namespace app\admin\controller\debug;
|
|
|
|
use app\common\controller\AdminController;
|
|
use app\admin\service\annotation\ControllerAnnotation;
|
|
use app\admin\service\annotation\NodeAnotation;
|
|
use think\App;
|
|
|
|
/**
|
|
* @ControllerAnnotation(title="debug_log")
|
|
*/
|
|
class Log extends AdminController
|
|
{
|
|
|
|
protected $sort = [
|
|
'uid' => 'desc',
|
|
'id' => 'asc',
|
|
];
|
|
|
|
use \app\admin\traits\Curd;
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
|
|
$this->model = new \app\admin\model\DebugLog();
|
|
}
|
|
}
|