mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ulthon_admin
|
||
// +----------------------------------------------------------------------
|
||
// | PHP交流群: 207160418
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 http://license.coscl.org.cn/MulanPSL2
|
||
// +----------------------------------------------------------------------
|
||
// | gitee开源项目:https://gitee.com/ulthon/ulthon_admin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace base\admin\service\annotation;
|
||
|
||
use Doctrine\Common\Annotations\Annotation\Attributes;
|
||
use Doctrine\Common\Annotations\Annotation\Required;
|
||
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
||
/**
|
||
* Class ControllerAnnotation.
|
||
*
|
||
* @Annotation
|
||
* @Target("CLASS")
|
||
* @Attributes({
|
||
* @Attribute("title", type="string"),
|
||
* })
|
||
*
|
||
* @since 2.0
|
||
*/
|
||
class ControllerAnnotationBase
|
||
{
|
||
/**
|
||
* Route group prefix for the controller.
|
||
*
|
||
* @Required()
|
||
*
|
||
* @var string
|
||
*/
|
||
public $title = '';
|
||
|
||
/**
|
||
* 功能所属模块.
|
||
*
|
||
* @var string
|
||
*/
|
||
public $module = '通用';
|
||
}
|