feat: 完成基本的日志展示

This commit is contained in:
augushong
2025-10-10 21:17:24 +08:00
parent ef1beaac38
commit dccccf94a0
3 changed files with 90 additions and 80 deletions

View File

@@ -1,27 +0,0 @@
<?php
namespace base\admin\controller\debug;
use app\admin\service\annotation\ControllerAnnotation;
use app\common\controller\AdminController;
use think\App;
/**
* @ControllerAnnotation(title="debug_log")
*/
class LogBase 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();
}
}