实现SuperAgent特殊入口结果处理

This commit is contained in:
andy
2026-07-10 12:05:57 +08:00
parent 9de4f0e7b6
commit 74e429a2cb
29 changed files with 1121 additions and 97 deletions

View File

@@ -0,0 +1,7 @@
-- M002 S000/S999订单可见性。技术订单只用于挂靠来源消息结果任务不进入前端订单列表。
ALTER TABLE workflow_reservation_order
ADD COLUMN order_visibility VARCHAR(32) NOT NULL DEFAULT 'VISIBLE' COMMENT '订单前端可见性VISIBLE 普通业务订单HIDDEN_SYSTEM 系统隐藏技术订单';
-- M002 S000/S999订单列表和按状态查询默认只读取可见业务订单。
CREATE INDEX idx_reservation_order_visibility_status
ON workflow_reservation_order (hotel_id, order_visibility, order_status, updated_at);