mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-05 17:42:49 +08:00
重新修改主业务逻辑的命名规则
This commit is contained in:
@@ -4,7 +4,7 @@ namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use app\admin\service\annotation\NodeAnotation;
|
||||
use base\admin\controller\system\AdminClass;
|
||||
use base\admin\controller\system\AdminBase;
|
||||
|
||||
/**
|
||||
* Class Admin.
|
||||
@@ -12,6 +12,6 @@ use base\admin\controller\system\AdminClass;
|
||||
*
|
||||
* @NodeAnotation(title="自定义权限标识符",name="customFlag")
|
||||
*/
|
||||
class Admin extends AdminClass
|
||||
class Admin extends AdminBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\AuthClass;
|
||||
use base\admin\controller\system\AuthBase;
|
||||
|
||||
/**
|
||||
* @ControllerAnnotation(title="角色权限管理")
|
||||
* Class Auth
|
||||
*/
|
||||
class Auth extends AuthClass
|
||||
class Auth extends AuthBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\ConfigClass;
|
||||
use base\admin\controller\system\ConfigBase;
|
||||
|
||||
/**
|
||||
* Class Config.
|
||||
* @ControllerAnnotation(title="系统配置管理")
|
||||
*/
|
||||
class Config extends ConfigClass
|
||||
class Config extends ConfigBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\MenuClass;
|
||||
use base\admin\controller\system\MenuBase;
|
||||
|
||||
/**
|
||||
* Class Menu.
|
||||
* @ControllerAnnotation(title="菜单管理",auth=true)
|
||||
*/
|
||||
class Menu extends MenuClass
|
||||
class Menu extends MenuBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\NodeClass;
|
||||
use base\admin\controller\system\NodeBase;
|
||||
|
||||
/**
|
||||
* @ControllerAnnotation(title="系统节点管理")
|
||||
* Class Node
|
||||
*/
|
||||
class Node extends NodeClass
|
||||
class Node extends NodeBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\QuickClass;
|
||||
use base\admin\controller\system\QuickBase;
|
||||
|
||||
/**
|
||||
* @ControllerAnnotation(title="快捷入口管理")
|
||||
* Class Quick
|
||||
*/
|
||||
class Quick extends QuickClass
|
||||
class Quick extends QuickBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use app\admin\service\annotation\ControllerAnnotation;
|
||||
use base\admin\controller\system\UploadfileClass;
|
||||
use base\admin\controller\system\UploadfileBase;
|
||||
|
||||
/**
|
||||
* @ControllerAnnotation(title="上传文件管理")
|
||||
* Class Uploadfile
|
||||
*/
|
||||
class Uploadfile extends UploadfileClass
|
||||
class Uploadfile extends UploadfileBase
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user