feat : spu

This commit is contained in:
2025-03-25 17:34:26 +08:00
parent 6fca649c86
commit 3b7817bf02
4 changed files with 68 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Constants\Common;
class CategoryCode
{
/**
* 商品分类 1=菜品 2=主食 3=加饭
*/
CONST DISH = 1;
CONST STAPLE = 2;
CONST EXTRA_STAPLE = 3;
}