aaa
doum
2026-06-08 3ac279c9df7181c9f21d35a689a321b990b87b22
1
2
3
4
5
6
-- 修复历史订单:创建时间应等于页面会话创建时间,而非提交时间
UPDATE `preselect_order`
SET `create_time` = `session_create_time`
WHERE `session_create_time` IS NOT NULL
  AND `isdeleted` = 0
  AND (`create_time` IS NULL OR `create_time` = `submit_time`);