This commit is contained in:
aaron 2025-03-23 15:54:24 +08:00
parent 05e23314da
commit 6b8f21891b
3 changed files with 5 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class Settings(BaseSettings):
ORDER_EXTRA_PACKAGE_THRESHOLD: int = 5 # 额外收费阈值
# 邀请新人赠送优惠券ID
FIRST_ORDER_REFERRAL_COUPON_ID: int = 1
FIRST_ORDER_REFERRAL_COUPON_ID: int = 2
FIRST_ORDER_REFERRAL_COUPON_COUNT: int = 1
FIRST_ORDER_REFERRAL_COUPON_EXPIRE_DAYS: int = 3

View File

@ -151,4 +151,7 @@ ADD COLUMN product_delivery_date DATE COMMENT '配送日期快照' AFTER product
-- 添加配送截止时间快照字段
ALTER TABLE merchant_orders
ADD COLUMN product_delivery_deadline_time DATETIME COMMENT '配送截止时间快照' AFTER product_delivery_date;
ADD COLUMN product_delivery_deadline_time DATETIME COMMENT '配送截止时间快照' AFTER product_delivery_date;
--====FINISH 3.23====

Binary file not shown.