已超出当天可抢订单数 ,停止抢单

This commit is contained in:
2026-06-03 23:10:26 +08:00
parent 0a13ce32ac
commit 1445c01c78
6 changed files with 283 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
-- 升级脚本lb_fan_management 增加优惠券与奖金字段
SET NAMES utf8mb4;
ALTER TABLE `lb_fan_management`
ADD COLUMN `coupon` DECIMAL(12,3) NOT NULL DEFAULT 0.000 COMMENT '优惠券金额' AFTER `token`,
ADD COLUMN `self_bonus` DECIMAL(12,3) NOT NULL DEFAULT 0.000 COMMENT '自购奖金' AFTER `coupon`,
ADD COLUMN `share_bonus` DECIMAL(12,3) NOT NULL DEFAULT 0.000 COMMENT '分享奖金' AFTER `self_bonus`;