windTowerStatusInfoMenu.sql 2.2 KB

12345678910111213141516171819202122
  1. -- 菜单 SQL
  2. 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)
  3. values('测风塔信息', '2028', '1', 'windTowerStatusInfo', 'dataQuery/windTowerStatusInfo/index', 1, 0, 'C', '0', '0', 'dataQuery:windTowerStatusInfo:list', '#', 'admin', sysdate(), '', null, '测风塔信息菜单');
  4. -- 按钮父菜单ID
  5. SELECT @parentId := LAST_INSERT_ID();
  6. -- 按钮 SQL
  7. 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)
  8. values('测风塔信息查询', @parentId, '1', '#', '', 1, 0, 'F', '0', '0', 'dataQuery:windTowerStatusInfo:query', '#', 'admin', sysdate(), '', null, '');
  9. 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)
  10. values('测风塔信息新增', @parentId, '2', '#', '', 1, 0, 'F', '0', '0', 'dataQuery:windTowerStatusInfo:add', '#', 'admin', sysdate(), '', null, '');
  11. 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)
  12. values('测风塔信息修改', @parentId, '3', '#', '', 1, 0, 'F', '0', '0', 'dataQuery:windTowerStatusInfo:edit', '#', 'admin', sysdate(), '', null, '');
  13. 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)
  14. values('测风塔信息删除', @parentId, '4', '#', '', 1, 0, 'F', '0', '0', 'dataQuery:windTowerStatusInfo:remove', '#', 'admin', sysdate(), '', null, '');
  15. 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)
  16. values('测风塔信息导出', @parentId, '5', '#', '', 1, 0, 'F', '0', '0', 'dataQuery:windTowerStatusInfo:export', '#', 'admin', sysdate(), '', null, '');