完善流程部门权限并补充余值覆盖字段

This commit is contained in:
wkc
2026-06-08 17:15:01 +08:00
parent eef36ff0ec
commit f11d20abc7
22 changed files with 538 additions and 120 deletions

View File

@@ -0,0 +1,5 @@
-- 为流程表增加创建人部门ID用于支行管理员流程列表数据权限
ALTER TABLE `loan_pricing_workflow`
ADD COLUMN `dept_id` bigint(20) DEFAULT NULL COMMENT '创建人部门ID' AFTER `is_inclusive_finance`;
CREATE INDEX `idx_dept_id` ON `loan_pricing_workflow` (`dept_id`);