Files
EasyAdmin8/app/admin/service/annotation/NodeAnotation.php
wolfcode e1c3216904 init
2023-06-15 16:18:27 +08:00

33 lines
489 B
PHP

<?php
namespace app\admin\service\annotation;
use Doctrine\Common\Annotations\Annotation\Attributes;
/**
* 创建节点注解类
*
* @Annotation
* @Target({"METHOD","CLASS"})
* @Attributes({
* @Attribute("time", type = "int")
* })
*/
final class NodeAnotation
{
/**
* 节点名称
* @Required()
* @var string
*/
public $title;
/**
* 是否开启权限控制
* @Enum({true,false})
* @var bool
*/
public $auth = true;
}