初始化提交

This commit is contained in:
maticarmy
2025-02-10 10:39:00 +08:00
commit 59cd2c19d1
491 changed files with 54545 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace app\manager\controller;
use think\admin\Controller;
/**
* 后台管理基础控制器
*/
class Base extends Controller
{
/**
* 初始化方法
*/
protected function initialize()
{
parent::initialize();
// 直接使用 admin 的权限验证
}
}