<?php namespace App\Module\System\Services; class User { /** * 系统UID * * @param $id * @return bool */ static public function isSysUid($id): bool { if ($id < 10000) { return true; } return false; } }