mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-08 14:44:57 +08:00
55 lines
1.5 KiB
SQL
55 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, 2758,
|
|
'customer-company', '', 'cms/customerCompany/index', 0, 'CustomerCompany'
|
|
);
|
|
|
|
-- 按钮父菜单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 (
|
|
'客户公司查询', 'cms:customer-company:query', 3, 1, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'客户公司创建', 'cms:customer-company:create', 3, 2, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'客户公司更新', 'cms:customer-company:update', 3, 3, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'客户公司删除', 'cms:customer-company:delete', 3, 4, @parentId,
|
|
'', '', '', 0
|
|
);
|
|
INSERT INTO system_menu(
|
|
name, permission, type, sort, parent_id,
|
|
path, icon, component, status
|
|
)
|
|
VALUES (
|
|
'客户公司导出', 'cms:customer-company:export', 3, 5, @parentId,
|
|
'', '', '', 0
|
|
);
|