領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
189B

  1. <?php
  2. namespace App\Codes;
  3. /**
  4. * ユーザー権限
  5. */
  6. enum UserRole: int
  7. {
  8. case NONE = 0;
  9. case NORMAL_ADMIN = 100;
  10. case CONTRACT_ADMIN = 200;
  11. case SUPER_ADMIN = 900;
  12. }