18 lines
404 B
PHP
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;
|
|
} |