feat: menu

This commit is contained in:
2024-10-27 23:45:20 +08:00
parent 5285dd6972
commit b828d48672
9 changed files with 226 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
<?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;
}