feat : catering

This commit is contained in:
2025-03-10 16:52:23 +08:00
parent c21fc1ef90
commit 2e67b921bd
14 changed files with 598 additions and 54 deletions

View File

@@ -5,14 +5,16 @@ namespace App\Constants\Common;
class RoleCode
{
/**
* @var int 角色 1=超级管理员 2=管理员 3=财务 5=客服 6=市场部 7=厨师 8=司机
* @var int 角色 1=超级管理员 2=管理员 3=财务 5=客服 6=市场部 7=厨师 8=司机 9=仓管 10=套餐餐配员 11=自选餐配员
*/
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;
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;
CONST INT MEAL_CATERING = 10;
CONST INT OPTION_CATERING = 11;
}