Files
hyperf_service/app/Constants/Common/RoleCode.php
LAPTOP-7SGDREK0\shiweijun 22dd466254 feat:depot_recycle
2025-02-08 17:57:37 +08:00

18 lines
404 B
PHP

<?php
namespace App\Constants\Common;
class RoleCode
{
/**
* @var int 角色 1=超级管理员 2=管理员 3=财务 5=客服 6=市场部 7=厨师 8=司机
*/
const int SUPER_ADMIN = 1;
const int ADMIN = 2;
const int FINANCE = 3;
const int CUSTOMER_SERVICE = 5;
const int MARKETPLACE = 6;
const int CHEF = 7;
const int DRIVER = 8;
const int WAREHOUSE = 9;
}