This commit is contained in:
2026-02-03 17:26:23 +08:00
532 changed files with 97923 additions and 20698 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()
);