mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
18 lines
378 B
PHP
18 lines
378 B
PHP
<?php
|
|
|
|
namespace app\admin\controller\system;
|
|
|
|
use app\admin\service\annotation\ControllerAnnotation;
|
|
use app\admin\service\annotation\NodeAnotation;
|
|
use base\admin\controller\system\AdminClass;
|
|
|
|
/**
|
|
* Class Admin.
|
|
* @ControllerAnnotation(title="管理员管理")
|
|
*
|
|
* @NodeAnotation(title="自定义权限标识符",name="customFlag")
|
|
*/
|
|
class Admin extends AdminClass
|
|
{
|
|
}
|