feat: place Order

This commit is contained in:
2025-02-05 17:56:32 +08:00
parent fd94db463e
commit fda042da54
14 changed files with 504 additions and 11 deletions

View File

@@ -5,8 +5,10 @@ namespace App\Constants;
class ConfigCode
{
const string TODAY_CUT_OFF_TIME_KEY = 'TodayCutOffTime';
const string ORDER_CANCEL_TIME_KEY = 'OrderCancelTime';
const array DEFAULT_VALUE = [
self::TODAY_CUT_OFF_TIME_KEY => '15:00:00'
self::TODAY_CUT_OFF_TIME_KEY => '15:00:00',
self::ORDER_CANCEL_TIME_KEY => 5,
];
}