| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102 |
- /*
- Navicat Premium Data Transfer
- Source Server : localhost
- Source Server Type : MySQL
- Source Server Version : 80200 (8.2.0)
- Source Host : localhost:3306
- Source Schema : khyznh
- Target Server Type : MySQL
- Target Server Version : 80200 (8.2.0)
- File Encoding : 65001
- Date: 21/02/2024 18:14:14
- */
- SET NAMES utf8mb4;
- SET FOREIGN_KEY_CHECKS = 0;
- -- ----------------------------
- -- Table structure for gen_table
- -- ----------------------------
- DROP TABLE IF EXISTS `gen_table`;
- CREATE TABLE `gen_table` (
- `table_id` bigint NOT NULL COMMENT '编号',
- `data_name` varchar(200) DEFAULT '' COMMENT '数据源名称',
- `table_name` varchar(200) DEFAULT '' COMMENT '表名称',
- `table_comment` varchar(500) DEFAULT '' COMMENT '表描述',
- `sub_table_name` varchar(64) DEFAULT NULL COMMENT '关联子表的表名',
- `sub_table_fk_name` varchar(64) DEFAULT NULL COMMENT '子表关联的外键名',
- `class_name` varchar(100) DEFAULT '' COMMENT '实体类名称',
- `tpl_category` varchar(200) DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
- `package_name` varchar(100) DEFAULT NULL COMMENT '生成包路径',
- `module_name` varchar(30) DEFAULT NULL COMMENT '生成模块名',
- `business_name` varchar(30) DEFAULT NULL COMMENT '生成业务名',
- `function_name` varchar(50) DEFAULT NULL COMMENT '生成功能名',
- `function_author` varchar(50) DEFAULT NULL COMMENT '生成功能作者',
- `gen_type` char(1) DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
- `gen_path` varchar(200) DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
- `options` varchar(1000) DEFAULT NULL COMMENT '其它生成选项',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`table_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表';
- -- ----------------------------
- -- Records of gen_table
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for gen_table_column
- -- ----------------------------
- DROP TABLE IF EXISTS `gen_table_column`;
- CREATE TABLE `gen_table_column` (
- `column_id` bigint NOT NULL COMMENT '编号',
- `table_id` bigint DEFAULT NULL COMMENT '归属表编号',
- `column_name` varchar(200) DEFAULT NULL COMMENT '列名称',
- `column_comment` varchar(500) DEFAULT NULL COMMENT '列描述',
- `column_type` varchar(100) DEFAULT NULL COMMENT '列类型',
- `java_type` varchar(500) DEFAULT NULL COMMENT 'JAVA类型',
- `java_field` varchar(200) DEFAULT NULL COMMENT 'JAVA字段名',
- `is_pk` char(1) DEFAULT NULL COMMENT '是否主键(1是)',
- `is_increment` char(1) DEFAULT NULL COMMENT '是否自增(1是)',
- `is_required` char(1) DEFAULT NULL COMMENT '是否必填(1是)',
- `is_insert` char(1) DEFAULT NULL COMMENT '是否为插入字段(1是)',
- `is_edit` char(1) DEFAULT NULL COMMENT '是否编辑字段(1是)',
- `is_list` char(1) DEFAULT NULL COMMENT '是否列表字段(1是)',
- `is_query` char(1) DEFAULT NULL COMMENT '是否查询字段(1是)',
- `query_type` varchar(200) DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
- `html_type` varchar(200) DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
- `dict_type` varchar(200) DEFAULT '' COMMENT '字典类型',
- `sort` int DEFAULT NULL COMMENT '排序',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- PRIMARY KEY (`column_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表字段';
- -- ----------------------------
- -- Records of gen_table_column
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_client
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_client`;
- CREATE TABLE `sys_client` (
- `id` bigint NOT NULL COMMENT 'id',
- `client_id` varchar(64) DEFAULT NULL COMMENT '客户端id',
- `client_key` varchar(32) DEFAULT NULL COMMENT '客户端key',
- `client_secret` varchar(255) DEFAULT NULL COMMENT '客户端秘钥',
- `grant_type` varchar(255) DEFAULT NULL COMMENT '授权类型',
- `device_type` varchar(32) DEFAULT NULL COMMENT '设备类型',
- `active_timeout` int DEFAULT '1800' COMMENT 'token活跃超时时间',
- `timeout` int DEFAULT '604800' COMMENT 'token固定超时',
- `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统授权表';
- -- ----------------------------
- -- Records of sys_client
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, '0', '0', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40');
- INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, '0', '0', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_config
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_config`;
- CREATE TABLE `sys_config` (
- `config_id` bigint NOT NULL COMMENT '参数主键',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `config_name` varchar(100) DEFAULT '' COMMENT '参数名称',
- `config_key` varchar(100) DEFAULT '' COMMENT '参数键名',
- `config_value` varchar(500) DEFAULT '' COMMENT '参数键值',
- `config_type` char(1) DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`config_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='参数配置表';
- -- ----------------------------
- -- Records of sys_config
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
- INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '初始化密码 123456');
- INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '深色主题theme-dark,浅色主题theme-light');
- INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '是否开启注册用户功能(true开启,false关闭)');
- INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'true:开启, false:关闭');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_dept
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_dept`;
- CREATE TABLE `sys_dept` (
- `dept_id` bigint NOT NULL COMMENT '部门id',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `parent_id` bigint DEFAULT '0' COMMENT '父部门id',
- `ancestors` varchar(500) DEFAULT '' COMMENT '祖级列表',
- `dept_name` varchar(30) DEFAULT '' COMMENT '部门名称',
- `order_num` int DEFAULT '0' COMMENT '显示顺序',
- `leader` bigint DEFAULT NULL COMMENT '负责人',
- `phone` varchar(11) DEFAULT NULL COMMENT '联系电话',
- `email` varchar(50) DEFAULT NULL COMMENT '邮箱',
- `status` char(1) DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- PRIMARY KEY (`dept_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='部门表';
- -- ----------------------------
- -- Records of sys_dept
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, '000000', 0, '0', 'XXX科技', 0, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, '000000', 100, '0,100', '深圳总公司', 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, '000000', 100, '0,100', '长沙分公司', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, '000000', 101, '0,100,101', '研发部门', 1, 1, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, '000000', 101, '0,100,101', '市场部门', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, '000000', 101, '0,100,101', '测试部门', 3, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, '000000', 101, '0,100,101', '财务部门', 4, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, '000000', 101, '0,100,101', '运维部门', 5, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, '000000', 102, '0,100,102', '市场部门', 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, '000000', 102, '0,100,102', '财务部门', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_dict_data
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_dict_data`;
- CREATE TABLE `sys_dict_data` (
- `dict_code` bigint NOT NULL COMMENT '字典编码',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `dict_sort` int DEFAULT '0' COMMENT '字典排序',
- `dict_label` varchar(100) DEFAULT '' COMMENT '字典标签',
- `dict_value` varchar(100) DEFAULT '' COMMENT '字典键值',
- `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
- `css_class` varchar(100) DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
- `list_class` varchar(100) DEFAULT NULL COMMENT '表格回显样式',
- `is_default` char(1) DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`dict_code`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典数据表';
- -- ----------------------------
- -- Records of sys_dict_data
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 1, '男', '0', 'sys_user_sex', '', '', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别男');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 2, '女', '1', 'sys_user_sex', '', '', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别女');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 3, '未知', '2', 'sys_user_sex', '', '', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别未知');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '显示菜单');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '隐藏菜单');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '停用状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统默认是');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, '000000', 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统默认否');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, '000000', 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, '000000', 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '公告');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, '000000', 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, '000000', 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '关闭状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, '000000', 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '新增操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, '000000', 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '修改操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, '000000', 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '删除操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '000000', 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '授权操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '000000', 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '导出操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, '000000', 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '导入操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, '000000', 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '强退操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, '000000', 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '生成操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, '000000', 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '清空操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, '000000', 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, '000000', 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '停用状态');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, '000000', 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '其他操作');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (30, '000000', 0, '密码认证', 'password', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '密码认证');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '000000', 0, '短信认证', 'sms', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '短信认证');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '000000', 0, '邮件认证', 'email', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '邮件认证');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (33, '000000', 0, '小程序认证', 'xcx', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '小程序认证');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (34, '000000', 0, '三方登录认证', 'social', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '三方登录认证');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'PC');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (36, '000000', 0, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '安卓');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'iOS');
- INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (38, '000000', 0, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '小程序');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_dict_type
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_dict_type`;
- CREATE TABLE `sys_dict_type` (
- `dict_id` bigint NOT NULL COMMENT '字典主键',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `dict_name` varchar(100) DEFAULT '' COMMENT '字典名称',
- `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`dict_id`),
- UNIQUE KEY `tenant_id` (`tenant_id`,`dict_type`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典类型表';
- -- ----------------------------
- -- Records of sys_dict_type
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '用户性别', 'sys_user_sex', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '用户性别列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '菜单状态', 'sys_show_hide', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '菜单状态列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '系统开关', 'sys_normal_disable', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统开关列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', '系统是否', 'sys_yes_no', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统是否列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', '通知类型', 'sys_notice_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知类型列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '000000', '通知状态', 'sys_notice_status', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知状态列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '000000', '操作类型', 'sys_oper_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '操作类型列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '000000', '系统状态', 'sys_common_status', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '登录状态列表');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', '授权类型', 'sys_grant_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '认证授权类型');
- INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', '设备类型', 'sys_device_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '客户端设备类型');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_logininfor
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_logininfor`;
- CREATE TABLE `sys_logininfor` (
- `info_id` bigint NOT NULL COMMENT '访问ID',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `user_name` varchar(50) DEFAULT '' COMMENT '用户账号',
- `client_key` varchar(32) DEFAULT '' COMMENT '客户端',
- `device_type` varchar(32) DEFAULT '' COMMENT '设备类型',
- `ipaddr` varchar(128) DEFAULT '' COMMENT '登录IP地址',
- `login_location` varchar(255) DEFAULT '' COMMENT '登录地点',
- `browser` varchar(50) DEFAULT '' COMMENT '浏览器类型',
- `os` varchar(50) DEFAULT '' COMMENT '操作系统',
- `status` char(1) DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
- `msg` varchar(255) DEFAULT '' COMMENT '提示消息',
- `login_time` datetime DEFAULT NULL COMMENT '访问时间',
- PRIMARY KEY (`info_id`),
- KEY `idx_sys_logininfor_s` (`status`),
- KEY `idx_sys_logininfor_lt` (`login_time`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统访问记录';
- -- ----------------------------
- -- Records of sys_logininfor
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760153872342417409, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-02-21 12:06:00');
- INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760182679975723009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-02-21 14:00:28');
- INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760194434982445057, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', 'Login successful', '2024-02-21 14:47:11');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_menu
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_menu`;
- CREATE TABLE `sys_menu` (
- `menu_id` bigint NOT NULL COMMENT '菜单ID',
- `menu_name` varchar(50) NOT NULL COMMENT '菜单名称',
- `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID',
- `order_num` int DEFAULT '0' COMMENT '显示顺序',
- `path` varchar(200) DEFAULT '' COMMENT '路由地址',
- `component` varchar(255) DEFAULT NULL COMMENT '组件路径',
- `query_param` varchar(255) DEFAULT NULL COMMENT '路由参数',
- `is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)',
- `is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)',
- `menu_type` char(1) DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
- `visible` char(1) DEFAULT '0' COMMENT '显示状态(0显示 1隐藏)',
- `status` char(1) DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
- `perms` varchar(100) DEFAULT NULL COMMENT '权限标识',
- `icon` varchar(100) DEFAULT '#' COMMENT '菜单图标',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT '' COMMENT '备注',
- PRIMARY KEY (`menu_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='菜单权限表';
- -- ----------------------------
- -- Records of sys_menu
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统管理', 0, 1, 'system', NULL, '', 1, 0, 'M', '0', '0', '', 'system', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统管理目录');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统监控', 0, 3, 'monitor', NULL, '', 1, 0, 'M', '0', '0', '', 'monitor', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统监控目录');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统工具', 0, 4, 'tool', NULL, '', 1, 0, 'M', '0', '0', '', 'tool', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统工具目录');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'PLUS官网', 0, 5, 'https://gitee.com/dromara/RuoYi-Vue-Plus', NULL, '', 0, 0, 'M', '0', '0', '', 'guide', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'RuoYi-Vue-Plus官网地址');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '租户管理', 0, 2, 'tenant', NULL, '', 1, 0, 'M', '0', '0', '', 'chart', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户管理目录');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '用户管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '角色管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '菜单管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '部门管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '岗位管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '字典管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '参数设置菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知公告菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '日志管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '在线用户菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, '缓存监控', 2, 5, 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '缓存监控菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (114, '表单构建', 3, 1, 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '表单构建菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '代码生成菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'Admin监控', 2, 5, 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'Admin监控菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '文件管理', 1, 10, 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '文件管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, '任务调度中心', 2, 5, 'powerjob', 'monitor/powerjob/index', '', 1, 0, 'C', '0', '0', 'monitor:powerjob:list', 'job', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'PowerJob控制台菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, '租户管理', 6, 1, 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (122, '租户套餐管理', 6, 2, 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户套餐管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, '客户端管理', 1, 11, 'client', 'system/client/index', '', 1, 0, 'C', '0', '0', 'system:client:list', 'international', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '客户端管理菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '操作日志', 108, 1, 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '操作日志菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '登录日志', 108, 2, 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '登录日志菜单');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '日志导出', 500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1061, '客户端管理查询', 123, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1062, '客户端管理新增', 123, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1063, '客户端管理修改', 123, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1064, '客户端管理删除', 123, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1065, '客户端管理导出', 123, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1600, '文件查询', 118, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1601, '文件上传', 118, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1602, '文件下载', 118, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1603, '文件删除', 118, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1606, '租户查询', 121, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1607, '租户新增', 121, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1608, '租户修改', 121, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1609, '租户删除', 121, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1610, '租户导出', 121, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1611, '租户套餐查询', 122, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1612, '租户套餐新增', 122, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1613, '租户套餐修改', 122, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1614, '租户套餐删除', 122, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1615, '租户套餐导出', 122, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1620, '配置列表', 118, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:list', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1621, '配置添加', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1622, '配置编辑', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1623, '配置删除', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_notice
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_notice`;
- CREATE TABLE `sys_notice` (
- `notice_id` bigint NOT NULL COMMENT '公告ID',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `notice_title` varchar(50) NOT NULL COMMENT '公告标题',
- `notice_type` char(1) NOT NULL COMMENT '公告类型(1通知 2公告)',
- `notice_content` longblob COMMENT '公告内容',
- `status` char(1) DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(255) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`notice_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告表';
- -- ----------------------------
- -- Records of sys_notice
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '温馨提醒:2018-07-01 新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '管理员');
- INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '维护通知:2018-07-01 系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '管理员');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_oper_log
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_oper_log`;
- CREATE TABLE `sys_oper_log` (
- `oper_id` bigint NOT NULL COMMENT '日志主键',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `title` varchar(50) DEFAULT '' COMMENT '模块标题',
- `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)',
- `method` varchar(100) DEFAULT '' COMMENT '方法名称',
- `request_method` varchar(10) DEFAULT '' COMMENT '请求方式',
- `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
- `oper_name` varchar(50) DEFAULT '' COMMENT '操作人员',
- `dept_name` varchar(50) DEFAULT '' COMMENT '部门名称',
- `oper_url` varchar(255) DEFAULT '' COMMENT '请求URL',
- `oper_ip` varchar(128) DEFAULT '' COMMENT '主机地址',
- `oper_location` varchar(255) DEFAULT '' COMMENT '操作地点',
- `oper_param` varchar(2000) DEFAULT '' COMMENT '请求参数',
- `json_result` varchar(2000) DEFAULT '' COMMENT '返回参数',
- `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)',
- `error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息',
- `oper_time` datetime DEFAULT NULL COMMENT '操作时间',
- `cost_time` bigint DEFAULT '0' COMMENT '消耗时间',
- PRIMARY KEY (`oper_id`),
- KEY `idx_sys_oper_log_bt` (`business_type`),
- KEY `idx_sys_oper_log_s` (`status`),
- KEY `idx_sys_oper_log_ot` (`oper_time`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='操作日志记录';
- -- ----------------------------
- -- Records of sys_oper_log
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1760195588978081794, '000000', '租户', 2, 'org.dromara.system.controller.system.SysTenantController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/system/tenant/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":1,\"tenantId\":\"000000\",\"contactUserName\":null,\"contactPhone\":null,\"companyName\":null,\"username\":null,\"licenseNumber\":null,\"address\":null,\"domain\":null,\"intro\":null,\"remark\":null,\"packageId\":null,\"expireTime\":null,\"accountCount\":null,\"status\":\"1\"}', '', 1, '不允许操作管理租户', '2024-02-21 14:51:46', 20);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_oss
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_oss`;
- CREATE TABLE `sys_oss` (
- `oss_id` bigint NOT NULL COMMENT '对象存储主键',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `file_name` varchar(255) NOT NULL DEFAULT '' COMMENT '文件名',
- `original_name` varchar(255) NOT NULL DEFAULT '' COMMENT '原名',
- `file_suffix` varchar(10) NOT NULL DEFAULT '' COMMENT '文件后缀名',
- `url` varchar(500) NOT NULL COMMENT 'URL地址',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `create_by` bigint DEFAULT NULL COMMENT '上传人',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新人',
- `service` varchar(20) NOT NULL DEFAULT 'minio' COMMENT '服务商',
- PRIMARY KEY (`oss_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='OSS对象存储表';
- -- ----------------------------
- -- Records of sys_oss
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_oss_config
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_oss_config`;
- CREATE TABLE `sys_oss_config` (
- `oss_config_id` bigint NOT NULL COMMENT '主建',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `config_key` varchar(20) NOT NULL DEFAULT '' COMMENT '配置key',
- `access_key` varchar(255) DEFAULT '' COMMENT 'accessKey',
- `secret_key` varchar(255) DEFAULT '' COMMENT '秘钥',
- `bucket_name` varchar(255) DEFAULT '' COMMENT '桶名称',
- `prefix` varchar(255) DEFAULT '' COMMENT '前缀',
- `endpoint` varchar(255) DEFAULT '' COMMENT '访问站点',
- `domain` varchar(255) DEFAULT '' COMMENT '自定义域名',
- `is_https` char(1) DEFAULT 'N' COMMENT '是否https(Y=是,N=否)',
- `region` varchar(255) DEFAULT '' COMMENT '域',
- `access_policy` char(1) NOT NULL DEFAULT '1' COMMENT '桶权限类型(0=private 1=public 2=custom)',
- `status` char(1) DEFAULT '1' COMMENT '是否默认(0=是,1=否)',
- `ext1` varchar(255) DEFAULT '' COMMENT '扩展字段',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`oss_config_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='对象存储配置表';
- -- ----------------------------
- -- Records of sys_oss_config
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
- INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
- INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
- INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1250000000', '', 'cos.ap-beijing.myqcloud.com', '', 'N', 'ap-beijing', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
- INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_post
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_post`;
- CREATE TABLE `sys_post` (
- `post_id` bigint NOT NULL COMMENT '岗位ID',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `post_code` varchar(64) NOT NULL COMMENT '岗位编码',
- `post_name` varchar(50) NOT NULL COMMENT '岗位名称',
- `post_sort` int NOT NULL COMMENT '显示顺序',
- `status` char(1) NOT NULL COMMENT '状态(0正常 1停用)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`post_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='岗位信息表';
- -- ----------------------------
- -- Records of sys_post
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'ceo', '董事长', 1, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'se', '项目经理', 2, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'hr', '人力资源', 3, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'user', '普通员工', 4, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_role
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_role`;
- CREATE TABLE `sys_role` (
- `role_id` bigint NOT NULL COMMENT '角色ID',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `role_name` varchar(30) NOT NULL COMMENT '角色名称',
- `role_key` varchar(100) NOT NULL COMMENT '角色权限字符串',
- `role_sort` int NOT NULL COMMENT '显示顺序',
- `data_scope` char(1) DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
- `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
- `dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示',
- `status` char(1) NOT NULL COMMENT '角色状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`role_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色信息表';
- -- ----------------------------
- -- Records of sys_role
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '超级管理员', 'superadmin', 1, '1', 1, 1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '超级管理员');
- INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '普通角色', 'common', 2, '2', 1, 1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '普通角色');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_role_dept
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_role_dept`;
- CREATE TABLE `sys_role_dept` (
- `role_id` bigint NOT NULL COMMENT '角色ID',
- `dept_id` bigint NOT NULL COMMENT '部门ID',
- PRIMARY KEY (`role_id`,`dept_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和部门关联表';
- -- ----------------------------
- -- Records of sys_role_dept
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 100);
- INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 101);
- INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 105);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_role_menu
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_role_menu`;
- CREATE TABLE `sys_role_menu` (
- `role_id` bigint NOT NULL COMMENT '角色ID',
- `menu_id` bigint NOT NULL COMMENT '菜单ID',
- PRIMARY KEY (`role_id`,`menu_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和菜单关联表';
- -- ----------------------------
- -- Records of sys_role_menu
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 3);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 4);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 100);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 101);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 102);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 103);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 104);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 105);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 106);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 107);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 108);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 109);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 110);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 111);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 112);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 113);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 114);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 115);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 116);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 500);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 501);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1000);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1001);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1002);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1003);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1004);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1005);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1006);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1007);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1008);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1009);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1010);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1011);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1012);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1013);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1014);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1015);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1016);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1017);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1018);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1019);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1020);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1021);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1022);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1023);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1024);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1025);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1026);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1027);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1028);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1029);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1030);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1031);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1032);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1033);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1034);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1035);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1036);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1037);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1038);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1039);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1040);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1041);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1042);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1043);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1044);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1045);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1046);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1047);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1048);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1050);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1055);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1056);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1057);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1058);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1059);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1060);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1061);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1062);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1063);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1064);
- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1065);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_social
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_social`;
- CREATE TABLE `sys_social` (
- `id` bigint NOT NULL COMMENT '主键',
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `tenant_id` varchar(20) DEFAULT NULL COMMENT '租户id',
- `auth_id` varchar(255) NOT NULL COMMENT '平台+平台唯一id',
- `source` varchar(255) NOT NULL COMMENT '用户来源',
- `open_id` varchar(255) DEFAULT NULL COMMENT '平台编号唯一id',
- `user_name` varchar(30) NOT NULL COMMENT '登录账号',
- `nick_name` varchar(30) DEFAULT '' COMMENT '用户昵称',
- `email` varchar(255) DEFAULT '' COMMENT '用户邮箱',
- `avatar` varchar(500) DEFAULT '' COMMENT '头像地址',
- `access_token` varchar(255) NOT NULL COMMENT '用户的授权令牌',
- `expire_in` int DEFAULT NULL COMMENT '用户的授权令牌的有效期,部分平台可能没有',
- `refresh_token` varchar(255) DEFAULT NULL COMMENT '刷新令牌,部分平台可能没有',
- `access_code` varchar(255) DEFAULT NULL COMMENT '平台的授权信息,部分平台可能没有',
- `union_id` varchar(255) DEFAULT NULL COMMENT '用户的 unionid',
- `scope` varchar(255) DEFAULT NULL COMMENT '授予的权限,部分平台可能没有',
- `token_type` varchar(255) DEFAULT NULL COMMENT '个别平台的授权信息,部分平台可能没有',
- `id_token` varchar(255) DEFAULT NULL COMMENT 'id token,部分平台可能没有',
- `mac_algorithm` varchar(255) DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
- `mac_key` varchar(255) DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
- `code` varchar(255) DEFAULT NULL COMMENT '用户的授权code,部分平台可能没有',
- `oauth_token` varchar(255) DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
- `oauth_token_secret` varchar(255) DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='社会化关系表';
- -- ----------------------------
- -- Records of sys_social
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_tenant
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_tenant`;
- CREATE TABLE `sys_tenant` (
- `id` bigint NOT NULL COMMENT 'id',
- `tenant_id` varchar(20) NOT NULL COMMENT '租户编号',
- `contact_user_name` varchar(20) DEFAULT NULL COMMENT '联系人',
- `contact_phone` varchar(20) DEFAULT NULL COMMENT '联系电话',
- `company_name` varchar(50) DEFAULT NULL COMMENT '企业名称',
- `license_number` varchar(30) DEFAULT NULL COMMENT '统一社会信用代码',
- `address` varchar(200) DEFAULT NULL COMMENT '地址',
- `intro` varchar(200) DEFAULT NULL COMMENT '企业简介',
- `domain` varchar(200) DEFAULT NULL COMMENT '域名',
- `remark` varchar(200) DEFAULT NULL COMMENT '备注',
- `package_id` bigint DEFAULT NULL COMMENT '租户套餐编号',
- `expire_time` datetime DEFAULT NULL COMMENT '过期时间',
- `account_count` int DEFAULT '-1' COMMENT '用户数量(-1不限制)',
- `status` char(1) DEFAULT '0' COMMENT '租户状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='租户表';
- -- ----------------------------
- -- Records of sys_tenant
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_tenant` (`id`, `tenant_id`, `contact_user_name`, `contact_phone`, `company_name`, `license_number`, `address`, `intro`, `domain`, `remark`, `package_id`, `expire_time`, `account_count`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '000000', '管理组', '15888888888', 'XXX有限公司', NULL, NULL, '多租户通用后台管理管理系统', NULL, NULL, NULL, NULL, -1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_tenant_package
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_tenant_package`;
- CREATE TABLE `sys_tenant_package` (
- `package_id` bigint NOT NULL COMMENT '租户套餐id',
- `package_name` varchar(20) DEFAULT NULL COMMENT '套餐名称',
- `menu_ids` varchar(3000) DEFAULT NULL COMMENT '关联菜单id',
- `remark` varchar(200) DEFAULT NULL COMMENT '备注',
- `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
- `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- PRIMARY KEY (`package_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='租户套餐表';
- -- ----------------------------
- -- Records of sys_tenant_package
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_user
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_user`;
- CREATE TABLE `sys_user` (
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
- `dept_id` bigint DEFAULT NULL COMMENT '部门ID',
- `user_name` varchar(30) NOT NULL COMMENT '用户账号',
- `nick_name` varchar(30) NOT NULL COMMENT '用户昵称',
- `user_type` varchar(10) DEFAULT 'sys_user' COMMENT '用户类型(sys_user系统用户)',
- `email` varchar(50) DEFAULT '' COMMENT '用户邮箱',
- `phonenumber` varchar(11) DEFAULT '' COMMENT '手机号码',
- `sex` char(1) DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
- `avatar` bigint DEFAULT NULL COMMENT '头像地址',
- `password` varchar(100) DEFAULT '' COMMENT '密码',
- `status` char(1) DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
- `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
- `login_ip` varchar(128) DEFAULT '' COMMENT '最后登录IP',
- `login_date` datetime DEFAULT NULL COMMENT '最后登录时间',
- `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
- `create_by` bigint DEFAULT NULL COMMENT '创建者',
- `create_time` datetime DEFAULT NULL COMMENT '创建时间',
- `update_by` bigint DEFAULT NULL COMMENT '更新者',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `remark` varchar(500) DEFAULT NULL COMMENT '备注',
- PRIMARY KEY (`user_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户信息表';
- -- ----------------------------
- -- Records of sys_user
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'admin', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '0:0:0:0:0:0:0:1', '2024-02-21 14:47:11', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 14:47:11', '管理员');
- INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 105, 'lionli', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@qq.com', '15666666666', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2024-02-21 12:02:40', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '测试员');
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_user_post
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_user_post`;
- CREATE TABLE `sys_user_post` (
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `post_id` bigint NOT NULL COMMENT '岗位ID',
- PRIMARY KEY (`user_id`,`post_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户与岗位关联表';
- -- ----------------------------
- -- Records of sys_user_post
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1);
- INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (2, 2);
- COMMIT;
- -- ----------------------------
- -- Table structure for sys_user_role
- -- ----------------------------
- DROP TABLE IF EXISTS `sys_user_role`;
- CREATE TABLE `sys_user_role` (
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `role_id` bigint NOT NULL COMMENT '角色ID',
- PRIMARY KEY (`user_id`,`role_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户和角色关联表';
- -- ----------------------------
- -- Records of sys_user_role
- -- ----------------------------
- BEGIN;
- INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1, 1);
- INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (2, 2);
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_car_drive_warning
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_car_drive_warning`;
- CREATE TABLE `tbl_car_drive_warning` (
- `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
- `c_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `content` text COMMENT '告警内容',
- `ext1` json DEFAULT NULL COMMENT '扩展1',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='驾驶监管';
- -- ----------------------------
- -- Records of tbl_car_drive_warning
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_car_info
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_car_info`;
- CREATE TABLE `tbl_car_info` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
- `car_num` varchar(200) DEFAULT NULL COMMENT '车牌号',
- `car_type` varchar(100) DEFAULT NULL COMMENT '车类型(5座、19座)',
- `device_infos` json DEFAULT NULL COMMENT '所有车载设备信息',
- `repair_info` json DEFAULT NULL COMMENT '维修信息',
- `maintenance_info` json DEFAULT NULL COMMENT '保养信息',
- `insurance_info` json DEFAULT NULL COMMENT '保险信息',
- `inspection_info` json DEFAULT NULL COMMENT '年检信息',
- `traffic_accident_info` json DEFAULT NULL COMMENT '交通事故信息',
- `violation_info` json DEFAULT NULL COMMENT '违章信息',
- `change_info` json DEFAULT NULL COMMENT '车辆变更信息',
- `ext1` json DEFAULT NULL COMMENT '扩展1',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车辆信息表';
- -- ----------------------------
- -- Records of tbl_car_info
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_car_path
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_car_path`;
- CREATE TABLE `tbl_car_path` (
- `id` int NOT NULL AUTO_INCREMENT,
- `name` varchar(200) DEFAULT NULL COMMENT '路线名称',
- `station_list` json DEFAULT NULL COMMENT '起止及经过站点信息(包括场站编号及路过场站的时间)',
- `car_id` int DEFAULT NULL COMMENT '车辆信息',
- `driver_info` int DEFAULT NULL COMMENT '司机',
- `attendant_info` int DEFAULT NULL COMMENT '随车人员',
- `remark` text COMMENT '备注',
- `ext1` json DEFAULT NULL COMMENT '扩展',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车辆路线';
- -- ----------------------------
- -- Records of tbl_car_path
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_car_schedule
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_car_schedule`;
- CREATE TABLE `tbl_car_schedule` (
- `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
- `path_info` json DEFAULT NULL COMMENT '路线信息',
- `schedule_date` date DEFAULT NULL COMMENT '日期',
- `c_time` datetime DEFAULT (now()) COMMENT '创建时间',
- `u_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '跟新时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车及人员排班';
- -- ----------------------------
- -- Records of tbl_car_schedule
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_car_service
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_car_service`;
- CREATE TABLE `tbl_car_service` (
- `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
- `car_id` int DEFAULT NULL COMMENT '车辆编号',
- `mileage_info` json DEFAULT NULL COMMENT '行驶里程',
- `oil_info` json DEFAULT NULL COMMENT '加油信息',
- `repair_info` int DEFAULT NULL COMMENT '维修信息',
- `check_info` json DEFAULT NULL COMMENT '检查信息',
- `ext1` json DEFAULT NULL COMMENT '扩展1',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车务信息';
- -- ----------------------------
- -- Records of tbl_car_service
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_goods_loss
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_goods_loss`;
- CREATE TABLE `tbl_goods_loss` (
- `id` int NOT NULL AUTO_INCREMENT,
- `title` text COMMENT '主题',
- `content` longtext COMMENT '内容',
- `ext1` json DEFAULT NULL COMMENT '扩展1',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='丢失货物表';
- -- ----------------------------
- -- Records of tbl_goods_loss
- -- ----------------------------
- BEGIN;
- COMMIT;
- -- ----------------------------
- -- Table structure for tbl_user_vacate
- -- ----------------------------
- DROP TABLE IF EXISTS `tbl_user_vacate`;
- CREATE TABLE `tbl_user_vacate` (
- `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
- `user_info` json DEFAULT NULL COMMENT '用户信息',
- `start_date` date DEFAULT NULL COMMENT '请假开始日期',
- `end_date` date DEFAULT NULL COMMENT '结束日期',
- `desc` text COMMENT '内容描述',
- `status` int DEFAULT '0' COMMENT '状态( 1-通过 2-拒绝 0-待处理)',
- `c_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `u_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '跟新时间',
- `ext1` json DEFAULT NULL COMMENT '扩展1',
- `ext2` json DEFAULT NULL COMMENT '扩展2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='人员请假表';
- -- ----------------------------
- -- Records of tbl_user_vacate
- -- ----------------------------
- BEGIN;
- COMMIT;
- SET FOREIGN_KEY_CHECKS = 1;
|