Files
hyperf_service/app/Constants/Admin/AuthCode.php
2024-10-28 17:56:19 +08:00

31 lines
383 B
PHP

<?php
namespace App\Constants\Admin;
class AuthCode
{
/**
* 启用
*/
const MENU_STATUS_ENABLE = 1;
/**
* 禁用
*/
const MENU_STATUS_DISABLE = 2;
/**
* 菜单列表
*/
const MENU_TYPE_LIST = 1;
/**
* 按钮
*/
const MENU_TYPE_BUTTON = 2;
/**
* 超级管理员
*/
const SUPERADMIN = 1;
}