22 lines
2.1 KiB
SQL
22 lines
2.1 KiB
SQL
-- 菜单 SQL
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数', '2024', '1', 'ngpar', 'ngtools/ngpar/index', 1, 0, 'C', '0', '0', 'ngtools:ngpar:list', '#', 'admin', sysdate(), '', null, '天然气物性参数菜单');
|
|
|
|
-- 按钮父菜单ID
|
|
SELECT @parentId := LAST_INSERT_ID();
|
|
|
|
-- 按钮 SQL
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数查询', @parentId, '1', '#', '', 1, 0, 'F', '0', '0', 'ngtools:ngpar:query', '#', 'admin', sysdate(), '', null, '');
|
|
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数新增', @parentId, '2', '#', '', 1, 0, 'F', '0', '0', 'ngtools:ngpar:add', '#', 'admin', sysdate(), '', null, '');
|
|
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数修改', @parentId, '3', '#', '', 1, 0, 'F', '0', '0', 'ngtools:ngpar:edit', '#', 'admin', sysdate(), '', null, '');
|
|
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数删除', @parentId, '4', '#', '', 1, 0, 'F', '0', '0', 'ngtools:ngpar:remove', '#', 'admin', sysdate(), '', null, '');
|
|
|
|
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
values('天然气物性参数导出', @parentId, '5', '#', '', 1, 0, 'F', '0', '0', 'ngtools:ngpar:export', '#', 'admin', sysdate(), '', null, ''); |