Files
be.ems/database/install/user_menu.sql
2023-08-14 21:41:37 +08:00

53 lines
11 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : local_mariadb
Source Server Type : MariaDB
Source Server Version : 100338 (10.3.38-MariaDB)
Source Host : localhost:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 21/06/2023 20:52:49
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for user_menu
-- ----------------------------
DROP TABLE IF EXISTS `user_menu`;
CREATE TABLE `user_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL DEFAULT NULL,
`menu_tag` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '',
`sort_id` int(11) NULL DEFAULT NULL,
`lang_tag` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`menu_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of user_menu
-- ----------------------------
INSERT INTO `user_menu` VALUES (1, 3, 'topologyManagement', 1, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-home\",\r\n \"child\": [{\r\n \"id\": 3,\r\n \"href\": \"page/main.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"网元状态\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"系统状态\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (2, 3, 'faultManagement', 2, 'cn', '{\r\n \"id\": 1,\r\n \"href\": \"\",\r\n \"icon\": \"fa fa-wrench\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"page/alarm/alarmListDown.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"活动告警\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 3,\r\n \"href\": \"page/alarm/AlarmListHistory.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"历史告警\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 4,\r\n \"href\": \"page/alarm/alarmInfoConfig.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"告警设置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"故障管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (3, 3, 'systemManagement', 3, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-pencil-square-o\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"page/nfManage/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"网元管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 3,\r\n \"href\": \"dormitoryset/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"参数配置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, ],\r\n \"title\": \"配置管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (4, 3, 'performanceManagement', 4, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-line-chart\",\r\n \"child\": [{\r\n \"id\": 1,\r\n \"href\": \"page/task/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"任务管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 2,\r\n \"href\": \"page/repair/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"数据管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 4,\r\n \"href\": \"page/task/threshold.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"性能门限\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"性能管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (5, 3, 'operationMaintenance', 5, 'cn', '{\r\n \"id\": 1,\r\n \"title\": \"操作维护\",\r\n \"icon\": \"fa fa-gear\",\r\n \"href\": null,\r\n \"target\": null,\r\n \"parentId\": 0,\r\n \"child\": [\r\n \r\n {\r\n \"id\": 2,\r\n \"title\": \"MML命令\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"href\": \"page/mml/list.html\",\r\n \"target\": null,\r\n \"parentId\": 1,\r\n \"child\": null\r\n }\r\n ]\r\n}');
INSERT INTO `user_menu` VALUES (6, 3, 'logManagement', 6, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-newspaper-o\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"page/log/operLogList.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"操作日志\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 4,\r\n \"href\": \"page/log/alarmLogList.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"告警日志\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 5,\r\n \"href\": \"page/log/logSet.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"日志设置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"日志管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n\r\n}');
INSERT INTO `user_menu` VALUES (7, 3, 'securityManagement', 7, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-users\",\r\n \"child\": [\r\n {\r\n \"id\": 2,\r\n \"href\": \"page/user/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"用户管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }\r\n ],\r\n \"title\": \"安全管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (8, 1, 'topologyManagement', 1, 'cn', '\r\n{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-cog\",\r\n \"child\": [ {\r\n \"id\": 3,\r\n \"href\": \"grade/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"网元状态\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"系统状态\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (9, 1, 'faultManagement', 2, 'cn', '{\"id\": 1, \"href\": \"\", \"icon\": \"fa fa-telegram\", \"child\": [{\"id\": 2, \"href\": \"page/alarm/alarmListDown.html\", \"icon\": \"fa fa-caret-right\", \"child\": null, \"title\": \"活动告警\", \"target\": null, \"parentId\": 1}, {\"id\": 3, \"href\": \"page/alarm/AlarmListHistory.html\", \"icon\": \"fa fa-caret-right\", \"child\": null, \"title\": \"历史告警\", \"target\": null, \"parentId\": 1}, {\"id\": 4, \"href\": \"page/alarm/alarmInfoConfig.html\", \"icon\": \"fa fa-caret-right\", \"child\": null, \"title\": \"告警设置\", \"target\": null, \"parentId\": 1}], \"title\": \"故障管理\", \"target\": null, \"parentId\": 0}');
INSERT INTO `user_menu` VALUES (10, 1, 'systemManagement', 3, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-home\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"page/nfManage/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"网元管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 3,\r\n \"href\": \"dormitoryset/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"参数配置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n },],\r\n \"title\": \"配置管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (11, 1, 'performanceManagement', 4, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-wrench\",\r\n \"child\": [{\r\n \"id\": 1,\r\n \"href\": \"page/task/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"任务管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 2,\r\n \"href\": \"page/repair/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"数据管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 3,\r\n \"href\": \"page/gold/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"黄金指标\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 4,\r\n \"href\": \"page/task/threshold.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"性能门限设置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"性能管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (12, 1, 'logManagement', 5, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-home\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"page/log/operLogList.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"操作日志\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 4,\r\n \"href\": \"page/log/alarmLogList.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"告警日志\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 5,\r\n \"href\": \"page/log/logSet.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"日志设置\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"日志管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (13, 1, 'traceManagement', 6, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-home\",\r\n \"child\": [{\r\n \"id\": 2,\r\n \"href\": \"building/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"任务管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }, {\r\n \"id\": 3,\r\n \"href\": \"page/mml/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"信令分析\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }],\r\n \"title\": \"跟踪管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
INSERT INTO `user_menu` VALUES (14, 1, 'securityManagement', 7, 'cn', '{\r\n \"id\": 1,\r\n \"href\": null,\r\n \"icon\": \"fa fa-users\",\r\n \"child\": [\r\n {\r\n \"id\": 2,\r\n \"href\": \"page/user/list.html\",\r\n \"icon\": \"fa fa-caret-right\",\r\n \"child\": null,\r\n \"title\": \"用户管理\",\r\n \"target\": null,\r\n \"parentId\": 1\r\n }\r\n ],\r\n \"title\": \"安全管理\",\r\n \"target\": null,\r\n \"parentId\": 0\r\n}');
SET FOREIGN_KEY_CHECKS = 1;