mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 23:12:49 +08:00
16 lines
244 B
PHP
16 lines
244 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Fendx\Core\Annotation;
|
||
|
|
|
||
|
|
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||
|
|
final class Dao
|
||
|
|
{
|
||
|
|
public string $name;
|
||
|
|
|
||
|
|
public function __construct(string $name = '')
|
||
|
|
{
|
||
|
|
$this->name = $name;
|
||
|
|
}
|
||
|
|
}
|