Files
hyperf_service/app/Constants/Admin/AuthCode.php
2024-10-27 23:45:20 +08:00

26 lines
317 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;
}