feat : cart

This commit is contained in:
2025-03-31 10:07:54 +08:00
parent e9ead2bd6b
commit 1c8da064d3
3 changed files with 252 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Constants\Api;
class CartCode
{
/**
* 商品 1= 正常 2= 错误
*/
const GOOD_STATUS_NORMAL = 1;
const GOOD_STATUS_HIDDEN = 2;
}