This commit is contained in:
2026-02-04 17:35:46 +08:00
parent 7344aaae77
commit 0ee4577b31
82 changed files with 20458 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
-- =====================================================================================
-- 补充订单通知数据
-- 目标用户: b653fded-7d5e-4950-aa0d-725595543e3c
-- =====================================================================================
INSERT INTO public.ml_notifications (user_id, type, title, content, extra_data, created_at)
VALUES (
'b653fded-7d5e-4950-aa0d-725595543e3c',
'order',
'订单已发货',
'您的订单 ML20240203000101 已发货快递单号SF1234567890请保持电话畅通。',
'{"order_no": "ML20240203000101", "status": "shipping", "statusText": "配送中"}',
NOW()
);