1. 新增业务流程任务表单可配置自定义路由表单选项

fix:
1. 修复 mysql 脚本部分字段未同步脚本的错误
2. 角色为空无法登录系统
3. 主子表缩写命名下代码生成器错误
This commit is contained in:
chenbowen
2025-08-06 17:45:38 +08:00
parent 3e78093885
commit 3812611b04
44 changed files with 1037 additions and 632 deletions

View File

@@ -88,4 +88,120 @@ INSERT INTO system_menu(
VALUES (
'1951092724040097797', '业务附件关联导出', 'infra:business-file:export', 3, 5, 1948328245618204673,
'', '', '', 0
);
);
-- 新增命名规范字典菜单
-- 菜单 SQL
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status, component_name
)
VALUES (
'1947909810016006146', '数据命名与简写标准管理', '', 2, 0, 2,
'standard-name', '', 'infra/standardname/index', 0, 'StandardName'
);
-- 按钮父菜单ID
-- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
-- SELECT @parentId := LAST_INSERT_ID();
-- 按钮 SQL
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953301310553645058', '数据命名与简写标准查询', 'infra:standard-name:query', 3, 1, 1947909810016006146,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953301310553645059', '数据命名与简写标准创建', 'infra:standard-name:create', 3, 2, 1947909810016006146,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953301310553645060', '数据命名与简写标准更新', 'infra:standard-name:update', 3, 3, 1947909810016006146,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953301310553645061', '数据命名与简写标准删除', 'infra:standard-name:delete', 3, 4, 1947909810016006146,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953301310553645062', '数据命名与简写标准导出', 'infra:standard-name:export', 3, 5, 1947909810016006146,
'', '', '', 0
);
-- 新增序列获取菜单
-- 菜单 SQL
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status, component_name
)
VALUES (
'1953701540574969857', '系统序列号管理', '', 2, 0, ${table.parentMenuId},
'sequence', '', 'system/sequence/index', 0, 'Sequence'
);
-- 按钮父菜单ID
-- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
-- SELECT @parentId := LAST_INSERT_ID();
-- 按钮 SQL
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953702581324398594', '系统序列号查询', 'system:sequence:query', 3, 1, 1953701540574969857,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953702581324398595', '系统序列号创建', 'system:sequence:create', 3, 2, 1953701540574969857,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953702581324398596', '系统序列号更新', 'system:sequence:update', 3, 3, 1953701540574969857,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953702581324398597', '系统序列号删除', 'system:sequence:delete', 3, 4, 1953701540574969857,
'', '', '', 0
);
INSERT INTO system_menu(
id, name, permission, type, sort, parent_id,
path, icon, component, status
)
VALUES (
'1953702581324398598', '系统序列号导出', 'system:sequence:export', 3, 5, 1953701540574969857,
'', '', '', 0
);