20 lines
401 B
PHP
20 lines
401 B
PHP
<?php
|
|
|
|
namespace App\Annotation;
|
|
|
|
use Attribute;
|
|
use Hyperf\Di\Annotation\AbstractAnnotation;
|
|
|
|
/**
|
|
* 管理端/机构端/商户端
|
|
*/
|
|
#[Attribute(Attribute::TARGET_METHOD)]
|
|
class Auth extends AbstractAnnotation
|
|
{
|
|
/**
|
|
* construct.
|
|
*/
|
|
public function __construct(public bool $needLogin=true, public bool $needAuth=true, public bool $needLog = true, public string $auth="*")
|
|
{}
|
|
}
|