| 123456789101112131415 |
- -- ============================================================================
- -- 主库 ylrz_saas 的 tenant_sys_menu / tenant_company_menu 同步
- -- ============================================================================
- INSERT IGNORE INTO ylrz_saas.tenant_sys_menu
- (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time)
- VALUES
- (3006, '测试场景管理', 2994, 4, 'lobster-test-scenario', 'lobster/test-scenario/index', 1, 0, 'C', '0', '0', 'workflow:lobster:scenario', 'document-checked', 'admin', NOW()),
- (3007, 'E2E运行历史', 2994, 5, 'lobster-e2e-history', 'lobster/e2e-history/index', 1, 0, 'C', '0', '0', 'workflow:lobster:e2e', 'time', 'admin', NOW());
- INSERT IGNORE INTO ylrz_saas.tenant_company_menu
- (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, company_id)
- VALUES
- (3006, '测试场景管理', 2994, 4, 'lobster-test-scenario', 'lobster/test-scenario/index', 1, 0, 'C', '0', '0', 'workflow:lobster:scenario', 'document-checked', 'admin', NOW(), NULL),
- (3007, 'E2E运行历史', 2994, 5, 'lobster-e2e-history', 'lobster/e2e-history/index', 1, 0, 'C', '0', '0', 'workflow:lobster:e2e', 'time', 'admin', NOW(), NULL);
|