优化订单履约状态处理

This commit is contained in:
yml2213
2026-07-31 16:28:30 +08:00
parent a091806283
commit 677bdbbc1c
11 changed files with 488 additions and 52 deletions
@@ -0,0 +1,5 @@
ALTER TABLE fulfillment_orders
ADD COLUMN IF NOT EXISTS request_fingerprint VARCHAR(64) NOT NULL DEFAULT '';
CREATE INDEX IF NOT EXISTS idx_fulfillment_orders_request_fingerprint
ON fulfillment_orders (request_fingerprint);