Files
medical-mall/doc_mall/consumer/sql/add_order_notification.sql
2026-02-03 17:26:23 +08:00

15 lines
648 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- =====================================================================================
-- 补充订单通知数据
-- 目标用户: 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()
);