User.php 286 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Module\System\Services;
  3. class User
  4. {
  5. /**
  6. * 系统UID
  7. *
  8. * @param $id
  9. * @return bool
  10. */
  11. static public function isSysUid($id): bool
  12. {
  13. if ($id < 10000) {
  14. return true;
  15. }
  16. return false;
  17. }
  18. }