mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-07 10:32:48 +08:00
重新修改主业务逻辑的命名规则
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service;
|
||||
|
||||
use base\admin\service\InitAdminServiceClass;
|
||||
use base\admin\service\InitAdminServiceBase;
|
||||
|
||||
class InitAdminService extends InitAdminServiceClass
|
||||
class InitAdminService extends InitAdminServiceBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service;
|
||||
|
||||
use base\admin\service\NodeServiceClass;
|
||||
use base\admin\service\NodeServiceBase;
|
||||
|
||||
class NodeService extends NodeServiceClass
|
||||
class NodeService extends NodeServiceBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service;
|
||||
|
||||
use base\admin\service\TriggerServiceClass;
|
||||
use base\admin\service\TriggerServiceBase;
|
||||
|
||||
class TriggerService extends TriggerServiceClass
|
||||
class TriggerService extends TriggerServiceBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
namespace app\admin\service\annotation;
|
||||
|
||||
use base\admin\service\annotation\ControllerAnnotationClass;
|
||||
use base\admin\service\annotation\ControllerAnnotationBase;
|
||||
use Doctrine\Common\Annotations\Annotation\Attributes;
|
||||
use Doctrine\Common\Annotations\Annotation\Target;
|
||||
|
||||
@@ -27,6 +27,6 @@ use Doctrine\Common\Annotations\Annotation\Target;
|
||||
*
|
||||
* @since 2.0
|
||||
*/
|
||||
final class ControllerAnnotation extends ControllerAnnotationClass
|
||||
final class ControllerAnnotation extends ControllerAnnotationBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
namespace app\admin\service\annotation;
|
||||
|
||||
use base\admin\service\annotation\NodeAnotationClass;
|
||||
use base\admin\service\annotation\NodeAnotationBase;
|
||||
use Doctrine\Common\Annotations\Annotation\Attributes;
|
||||
|
||||
/**
|
||||
@@ -24,6 +24,6 @@ use Doctrine\Common\Annotations\Annotation\Attributes;
|
||||
* @Attribute("time", type = "int")
|
||||
* })
|
||||
*/
|
||||
final class NodeAnotation extends NodeAnotationClass
|
||||
final class NodeAnotation extends NodeAnotationBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
namespace app\admin\service\curd;
|
||||
|
||||
use base\admin\service\curd\BuildCurdServiceClass;
|
||||
use base\admin\service\curd\BuildCurdServiceBase;
|
||||
|
||||
/**
|
||||
* 快速构建系统CURD
|
||||
* Class BuildCurd.
|
||||
*/
|
||||
class BuildCurdService extends BuildCurdServiceClass
|
||||
class BuildCurdService extends BuildCurdServiceBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service\curd\exceptions;
|
||||
|
||||
use base\admin\service\curd\exceptions\CurdExceptionClass;
|
||||
use base\admin\service\curd\exceptions\CurdExceptionBase;
|
||||
|
||||
class CurdException extends CurdExceptionClass
|
||||
class CurdException extends CurdExceptionBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service\curd\exceptions;
|
||||
|
||||
use base\admin\service\curd\exceptions\FileExceptionClass;
|
||||
use base\admin\service\curd\exceptions\FileExceptionBase;
|
||||
|
||||
class FileException extends FileExceptionClass
|
||||
class FileException extends FileExceptionBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace app\admin\service\curd\exceptions;
|
||||
|
||||
use base\admin\service\curd\exceptions\TableExceptionClass;
|
||||
use base\admin\service\curd\exceptions\TableExceptionBase;
|
||||
|
||||
class TableException extends TableExceptionClass
|
||||
class TableException extends TableExceptionBase
|
||||
{
|
||||
}
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
|
||||
namespace app\admin\service\node;
|
||||
|
||||
use base\admin\service\node\NodeClass;
|
||||
use base\admin\service\node\NodeBase;
|
||||
|
||||
/**
|
||||
* 节点处理类
|
||||
* Class Node.
|
||||
*/
|
||||
class Node extends NodeClass
|
||||
class Node extends NodeBase
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user