Files
hyperf_service/app/Constants/Common/RoleCode.php
2024-11-13 14:25:07 +08:00

17 lines
375 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;
}