Files
hyperf_service/app/Constants/Admin/AuthCode.php
2024-11-07 16:17:57 +08:00

41 lines
532 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;
/**
* 部门启用
*/
const SECTION_STATUS_ENABLE = 1;
/**
* 部门禁用
*/
const SECTION_STATUS_DISABLE = 2;
}