feat: menu
This commit is contained in:
26
app/Constants/Admin/AuthCode.php
Normal file
26
app/Constants/Admin/AuthCode.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user