AdminConstant.php 238 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\constants;
  3. /**
  4. * 管理员常量
  5. * Class AdminConstant
  6. * @package app\common\constants
  7. */
  8. class AdminConstant
  9. {
  10. /**
  11. * 超级管理员,不受权限控制
  12. */
  13. const SUPER_ADMIN_ID = 1;
  14. }