AdminConstant.php 769 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | EasyAdmin
  4. // +----------------------------------------------------------------------
  5. // | PHP交流群: 763822524
  6. // +----------------------------------------------------------------------
  7. // | 开源协议 https://mit-license.org
  8. // +----------------------------------------------------------------------
  9. // | github开源项目:https://github.com/zhongshaofa/EasyAdmin
  10. // +----------------------------------------------------------------------
  11. namespace app\common\constants;
  12. /**
  13. * 管理员常量
  14. * Class AdminConstant
  15. * @package app\common\constants
  16. */
  17. class AdminConstant
  18. {
  19. /**
  20. * 超级管理员,不受权限控制
  21. */
  22. const SUPER_ADMIN_ID = 1;
  23. }