- <?php
- declare(strict_types=1);
- namespace App\Master\Enum;
- use Hyperf\Constants\AbstractConstants;
- use Hyperf\Constants\Annotation\Constants;
- #[Constants]
- class PassportEnum extends AbstractConstants
- {
- /**
- * @Message("用户信息")
- */
- const USER_INFO = 'USER_INFO';
- }
|