39 lines
660 B
PHP
39 lines
660 B
PHP
<?php
|
|
|
|
namespace app\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
|
|
*/
|
|
final class ControllerAnnotation
|
|
{
|
|
|
|
/**
|
|
* Route group prefix for the controller
|
|
*
|
|
* @Required()
|
|
*
|
|
* @var string
|
|
*/
|
|
public $title = '';
|
|
|
|
/**
|
|
* 是否开启权限控制
|
|
* @Enum({true,false})
|
|
* @var bool
|
|
*/
|
|
public $auth = true;
|
|
|
|
} |