PassportEnum.php 289 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Master\Enum;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. #[Constants]
  7. class PassportEnum extends AbstractConstants
  8. {
  9. /**
  10. * @Message("用户信息")
  11. */
  12. const USER_INFO = 'USER_INFO';
  13. }