mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-02 03:34:58 +08:00
58 lines
1.5 KiB
SQL
58 lines
1.5 KiB
SQL
|
|
-- 历史预算管理
|
|
-- 菜单 SQL
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status, component_name
|
|
)
|
|
VALUES (
|
|
'历史预算管理管理', '', 2, 0, 2759,
|
|
'budget-history', '', 'pms/budgethistory/index', 0, 'BudgetHistory'
|
|
);
|
|
|
|
-- 按钮父菜单ID
|
|
-- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
|
|
SELECT @parentId := LAST_INSERT_ID();
|
|
|
|
-- 按钮 SQL
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'预算管理查询', 'pms:budget-history:query', 3, 1, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'预算管理创建', 'pms:budget-history:create', 3, 2, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'预算管理更新', 'pms:budget-history:update', 3, 3, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'预算管理删除', 'pms:budget-history:delete', 3, 4, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'预算管理导出', 'pms:budget-history:export', 3, 5, @parentId,
|
|
'', '', '', 0
|
|
);
|