手动关闭状态不要自动打开重启同步

This commit is contained in:
root
2026-07-07 14:56:39 +08:00
parent 2e621bf970
commit 92b4faf61f
12 changed files with 166 additions and 14 deletions
@@ -0,0 +1,6 @@
-- 工单手动管理:手动关闭后禁止自动同步与自动开启
SET NAMES utf8mb4;
ALTER TABLE `fa_split_ticket`
ADD COLUMN `manual_manage` tinyint(1) unsigned NOT NULL DEFAULT 0
COMMENT '手动管理:0=否,1=是(手动关闭后暂停同步且禁止自动开启)' AFTER `status`;