统一个人测算入参与重启脚本进程识别

This commit is contained in:
wkc
2026-04-10 15:04:56 +08:00
parent f001047d0c
commit fa0b446699
46 changed files with 903 additions and 87 deletions

View File

@@ -0,0 +1,10 @@
-- 统一 loan_pricing_workflow 表 org_code 默认值与存量数据
ALTER TABLE `loan_pricing_workflow`
MODIFY COLUMN `org_code` varchar(20) NOT NULL DEFAULT '892000' COMMENT '机构编码(统一值892000)';
UPDATE `loan_pricing_workflow`
SET `org_code` = '892000'
WHERE `org_code` IS NULL
OR `org_code` = ''
OR `org_code` <> '892000';