mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
16 lines
211 B
PHP
16 lines
211 B
PHP
<?php
|
|
|
|
namespace base\common\constants;
|
|
|
|
/**
|
|
* 管理员常量
|
|
* Class AdminConstant.
|
|
*/
|
|
class AdminConstantBase
|
|
{
|
|
/**
|
|
* 超级管理员,不受权限控制.
|
|
*/
|
|
const SUPER_ADMIN_ID = 1;
|
|
}
|