|
|
/*
|
|
|
Navicat Premium Data Transfer
|
|
|
|
|
|
Source Server : huawei-mysql_6000
|
|
|
Source Server Type : MySQL
|
|
|
Source Server Version : 80033 (8.0.33)
|
|
|
Source Host : huawei-mysql:6000
|
|
|
Source Schema : ry-cloud
|
|
|
|
|
|
Target Server Type : MySQL
|
|
|
Target Server Version : 80033 (8.0.33)
|
|
|
File Encoding : 65001
|
|
|
|
|
|
Date: 21/08/2023 10:59:23
|
|
|
*/
|
|
|
|
|
|
SET NAMES utf8mb4;
|
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_BLOB_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_BLOB_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
`blob_data` blob COMMENT '存放持久化Trigger对象',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`),
|
|
|
CONSTRAINT `QRTZ_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `QRTZ_TRIGGERS` (`sched_name`, `trigger_name`, `trigger_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Blob类型的触发器表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_BLOB_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_CALENDARS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_CALENDARS`;
|
|
|
CREATE TABLE `QRTZ_CALENDARS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`calendar_name` varchar(200) NOT NULL COMMENT '日历名称',
|
|
|
`calendar` blob NOT NULL COMMENT '存放持久化calendar对象',
|
|
|
PRIMARY KEY (`sched_name`,`calendar_name`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='日历信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_CALENDARS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_CRON_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_CRON_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
`cron_expression` varchar(200) NOT NULL COMMENT 'cron表达式',
|
|
|
`time_zone_id` varchar(80) DEFAULT NULL COMMENT '时区',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`),
|
|
|
CONSTRAINT `QRTZ_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `QRTZ_TRIGGERS` (`sched_name`, `trigger_name`, `trigger_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Cron类型的触发器表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_CRON_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_FIRED_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_FIRED_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`entry_id` varchar(95) NOT NULL COMMENT '调度器实例id',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
`instance_name` varchar(200) NOT NULL COMMENT '调度器实例名',
|
|
|
`fired_time` bigint NOT NULL COMMENT '触发的时间',
|
|
|
`sched_time` bigint NOT NULL COMMENT '定时器制定的时间',
|
|
|
`priority` int NOT NULL COMMENT '优先级',
|
|
|
`state` varchar(16) NOT NULL COMMENT '状态',
|
|
|
`job_name` varchar(200) DEFAULT NULL COMMENT '任务名称',
|
|
|
`job_group` varchar(200) DEFAULT NULL COMMENT '任务组名',
|
|
|
`is_nonconcurrent` varchar(1) DEFAULT NULL COMMENT '是否并发',
|
|
|
`requests_recovery` varchar(1) DEFAULT NULL COMMENT '是否接受恢复执行',
|
|
|
PRIMARY KEY (`sched_name`,`entry_id`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='已触发的触发器表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_FIRED_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_JOB_DETAILS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`;
|
|
|
CREATE TABLE `QRTZ_JOB_DETAILS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`job_name` varchar(200) NOT NULL COMMENT '任务名称',
|
|
|
`job_group` varchar(200) NOT NULL COMMENT '任务组名',
|
|
|
`description` varchar(250) DEFAULT NULL COMMENT '相关介绍',
|
|
|
`job_class_name` varchar(250) NOT NULL COMMENT '执行任务类名称',
|
|
|
`is_durable` varchar(1) NOT NULL COMMENT '是否持久化',
|
|
|
`is_nonconcurrent` varchar(1) NOT NULL COMMENT '是否并发',
|
|
|
`is_update_data` varchar(1) NOT NULL COMMENT '是否更新数据',
|
|
|
`requests_recovery` varchar(1) NOT NULL COMMENT '是否接受恢复执行',
|
|
|
`job_data` blob COMMENT '存放持久化job对象',
|
|
|
PRIMARY KEY (`sched_name`,`job_name`,`job_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务详细信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_JOB_DETAILS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_LOCKS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_LOCKS`;
|
|
|
CREATE TABLE `QRTZ_LOCKS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`lock_name` varchar(40) NOT NULL COMMENT '悲观锁名称',
|
|
|
PRIMARY KEY (`sched_name`,`lock_name`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='存储的悲观锁信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_LOCKS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_PAUSED_TRIGGER_GRPS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`;
|
|
|
CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='暂停的触发器表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_PAUSED_TRIGGER_GRPS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_SCHEDULER_STATE
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`;
|
|
|
CREATE TABLE `QRTZ_SCHEDULER_STATE` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`instance_name` varchar(200) NOT NULL COMMENT '实例名称',
|
|
|
`last_checkin_time` bigint NOT NULL COMMENT '上次检查时间',
|
|
|
`checkin_interval` bigint NOT NULL COMMENT '检查间隔时间',
|
|
|
PRIMARY KEY (`sched_name`,`instance_name`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='调度器状态表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_SCHEDULER_STATE
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_SIMPLE_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
`repeat_count` bigint NOT NULL COMMENT '重复的次数统计',
|
|
|
`repeat_interval` bigint NOT NULL COMMENT '重复的间隔时间',
|
|
|
`times_triggered` bigint NOT NULL COMMENT '已经触发的次数',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`),
|
|
|
CONSTRAINT `QRTZ_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `QRTZ_TRIGGERS` (`sched_name`, `trigger_name`, `trigger_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='简单触发器的信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_SIMPLE_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_SIMPROP_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键',
|
|
|
`str_prop_1` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第一个参数',
|
|
|
`str_prop_2` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第二个参数',
|
|
|
`str_prop_3` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第三个参数',
|
|
|
`int_prop_1` int DEFAULT NULL COMMENT 'int类型的trigger的第一个参数',
|
|
|
`int_prop_2` int DEFAULT NULL COMMENT 'int类型的trigger的第二个参数',
|
|
|
`long_prop_1` bigint DEFAULT NULL COMMENT 'long类型的trigger的第一个参数',
|
|
|
`long_prop_2` bigint DEFAULT NULL COMMENT 'long类型的trigger的第二个参数',
|
|
|
`dec_prop_1` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第一个参数',
|
|
|
`dec_prop_2` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第二个参数',
|
|
|
`bool_prop_1` varchar(1) DEFAULT NULL COMMENT 'Boolean类型的trigger的第一个参数',
|
|
|
`bool_prop_2` varchar(1) DEFAULT NULL COMMENT 'Boolean类型的trigger的第二个参数',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`),
|
|
|
CONSTRAINT `QRTZ_SIMPROP_TRIGGERS_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `QRTZ_TRIGGERS` (`sched_name`, `trigger_name`, `trigger_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='同步机制的行锁表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_SIMPROP_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for QRTZ_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `QRTZ_TRIGGERS`;
|
|
|
CREATE TABLE `QRTZ_TRIGGERS` (
|
|
|
`sched_name` varchar(120) NOT NULL COMMENT '调度名称',
|
|
|
`trigger_name` varchar(200) NOT NULL COMMENT '触发器的名字',
|
|
|
`trigger_group` varchar(200) NOT NULL COMMENT '触发器所属组的名字',
|
|
|
`job_name` varchar(200) NOT NULL COMMENT 'qrtz_job_details表job_name的外键',
|
|
|
`job_group` varchar(200) NOT NULL COMMENT 'qrtz_job_details表job_group的外键',
|
|
|
`description` varchar(250) DEFAULT NULL COMMENT '相关介绍',
|
|
|
`next_fire_time` bigint DEFAULT NULL COMMENT '上一次触发时间(毫秒)',
|
|
|
`prev_fire_time` bigint DEFAULT NULL COMMENT '下一次触发时间(默认为-1表示不触发)',
|
|
|
`priority` int DEFAULT NULL COMMENT '优先级',
|
|
|
`trigger_state` varchar(16) NOT NULL COMMENT '触发器状态',
|
|
|
`trigger_type` varchar(8) NOT NULL COMMENT '触发器的类型',
|
|
|
`start_time` bigint NOT NULL COMMENT '开始时间',
|
|
|
`end_time` bigint DEFAULT NULL COMMENT '结束时间',
|
|
|
`calendar_name` varchar(200) DEFAULT NULL COMMENT '日程表名称',
|
|
|
`misfire_instr` smallint DEFAULT NULL COMMENT '补偿执行的策略',
|
|
|
`job_data` blob COMMENT '存放持久化job对象',
|
|
|
PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`),
|
|
|
KEY `sched_name` (`sched_name`,`job_name`,`job_group`),
|
|
|
CONSTRAINT `QRTZ_TRIGGERS_ibfk_1` FOREIGN KEY (`sched_name`, `job_name`, `job_group`) REFERENCES `QRTZ_JOB_DETAILS` (`sched_name`, `job_name`, `job_group`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='触发器详细信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of QRTZ_TRIGGERS
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for gen_table
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `gen_table`;
|
|
|
CREATE TABLE `gen_table` (
|
|
|
`table_id` bigint NOT NULL AUTO_INCREMENT 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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`table_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of gen_table
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 'sys_datasource', '园区数据库表', NULL, NULL, 'SysDatasource', 'crud', 'com.ruoyi.system', 'system', 'datasource', '数据管理', 'ruoyi', '0', '/', '{\"parentMenuId\":\"1\"}', 'admin', '2023-07-03 13:33:25', '', '2023-07-03 15:17:10', NULL);
|
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 'sys_user_datasource', '用户可见数据源', NULL, NULL, 'SysUserDatasource', 'crud', 'com.ruoyi.system', 'system', 'userdatasource', '用户数据', 'wenjy', '0', '/', '{\"parentMenuId\":\"1\"}', 'admin', '2023-07-03 15:25:42', '', '2023-07-03 16:48:54', NULL);
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for gen_table_column
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `gen_table_column`;
|
|
|
CREATE TABLE `gen_table_column` (
|
|
|
`column_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
|
|
|
`table_id` varchar(64) 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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
PRIMARY KEY (`column_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表字段';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of gen_table_column
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '1', 'id', '主键', 'varchar(32)', 'String', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-07-03 13:33:25', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '1', 'url', '地址', 'varchar(512)', 'String', 'url', '0', '0', '1', '1', '1', '0', '0', 'EQ', 'textarea', '', 2, 'admin', '2023-07-03 13:33:25', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, '1', 'ip_port', '网络端口', 'varchar(120)', 'String', 'ipPort', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-07-03 13:33:25', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, '1', 'user_name', '用户名', 'varchar(32)', 'String', 'userName', '0', '0', '1', '1', '1', '1', '0', 'LIKE', 'input', '', 4, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, '1', 'password', '密码', 'varchar(32)', 'String', 'password', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'input', '', 5, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, '1', 'drive_class_name', '驱动', 'varchar(128)', 'String', 'driveClassName', '0', '0', '1', '1', '1', '1', '0', 'LIKE', 'input', '', 6, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, '1', 'pool_name', '数据源标识', 'varchar(32)', 'String', 'poolName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 7, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:11');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, '1', 'park_name', '数据源名称', 'varchar(32)', 'String', 'parkName', '0', '0', '0', '1', '1', '1', '0', 'LIKE', 'input', '', 8, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, '1', 'status', '帐号状态(0正常 1停用)', 'char(1)', 'String', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', 'sys_normal_disable', 9, 'admin', '2023-07-03 13:33:26', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, '1', 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', NULL, '0', NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, '1', 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, '1', 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, '1', 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, '1', 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:12');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, '1', 'remark', '备注', 'varchar(512)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'textarea', '', 15, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:13');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, '1', 'dept_id', '数据所属部门', 'int', 'Long', 'deptId', '0', '0', NULL, '1', '1', '1', '0', 'EQ', 'input', '', 16, 'admin', '2023-07-03 13:33:27', '', '2023-07-03 15:17:13');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, '1', 'schema_created', '0未创建 1已创建', 'char(1)', 'String', 'schemaCreated', '0', '0', NULL, '0', '0', '0', '0', 'EQ', 'input', '', 17, 'admin', '2023-07-03 13:33:28', '', '2023-07-03 15:17:13');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, '1', 'system_type', '所属系统', 'varchar(32)', 'String', 'systemType', '0', '0', NULL, '0', '0', '0', '0', 'EQ', 'select', '', 18, 'admin', '2023-07-03 13:33:28', '', '2023-07-03 15:17:13');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, '2', 'datasource_id', '', 'varchar(32)', 'String', 'datasourceId', '1', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-07-03 15:25:42', '', '2023-07-03 16:48:55');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, '2', 'user_id', '', 'varchar(32)', 'String', 'userId', '1', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-07-03 15:25:42', '', '2023-07-03 16:48:55');
|
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, '2', 'id', NULL, 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '', '2023-07-03 16:48:46', '', '2023-07-03 16:48:54');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_config
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_config`;
|
|
|
CREATE TABLE `sys_config` (
|
|
|
`config_id` int NOT NULL AUTO_INCREMENT 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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`config_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='参数配置表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_config
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', '2023-06-30 15:33:45', '', NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
|
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2023-06-30 15:33:45', '', NULL, '初始化密码 123456');
|
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2023-06-30 15:33:45', '', NULL, '深色主题theme-dark,浅色主题theme-light');
|
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2023-06-30 15:33:45', '', NULL, '是否开启注册用户功能(true开启,false关闭)');
|
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', '2023-06-30 15:33:45', '', NULL, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_datasource
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_datasource`;
|
|
|
CREATE TABLE `sys_datasource` (
|
|
|
`id` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '主键',
|
|
|
`url` varchar(512) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '地址',
|
|
|
`ip_port` varchar(120) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'ip:端口',
|
|
|
`user_name` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '用户名',
|
|
|
`password` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '密码',
|
|
|
`drive_class_name` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT 'com.mysql.cj.jdbc.Driver' COMMENT '驱动',
|
|
|
`pool_name` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '' COMMENT '数据源标识',
|
|
|
`park_name` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '数据源名称',
|
|
|
`status` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '1' COMMENT '帐号状态(0正常 1停用)',
|
|
|
`del_flag` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
|
`create_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(512) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '备注',
|
|
|
`dept_id` int DEFAULT NULL COMMENT '数据所属部门',
|
|
|
`schema_created` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '0未创建 1已创建',
|
|
|
`system_type` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '所属系统'
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='园区数据库表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_datasource
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_datasource` (`id`, `url`, `ip_port`, `user_name`, `password`, `drive_class_name`, `pool_name`, `park_name`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `dept_id`, `schema_created`, `system_type`) VALUES ('1', 'jdbc:mysql://124.70.63.37:6000/hw_ems_1?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8', '124.70.63.37:3306/hw_ems_1', 'root', 'haiwei@123', 'com.mysql.cj.jdbc.Driver', 'sf_hw_ems', '智慧场景', '0', '0', '', NULL, '', '2023-07-03 15:13:23', NULL, 103, '0', 'energy');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_dept
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_dept`;
|
|
|
CREATE TABLE `sys_dept` (
|
|
|
`dept_id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id',
|
|
|
`parent_id` bigint DEFAULT '0' COMMENT '父部门id',
|
|
|
`ancestors` varchar(50) DEFAULT '' COMMENT '祖级列表',
|
|
|
`dept_name` varchar(30) DEFAULT '' COMMENT '部门名称',
|
|
|
`order_num` int DEFAULT '0' COMMENT '显示顺序',
|
|
|
`leader` varchar(20) 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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
PRIMARY KEY (`dept_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='部门表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_dept
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 0, '0', '若依科技', 0, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 100, '0,100', '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', NULL);
|
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2023-06-30 15:33:44', '', 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 AUTO_INCREMENT 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否)',
|
|
|
`status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
|
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`dict_code`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典数据表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_dict_data
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '性别男');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '性别女');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '性别未知');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '显示菜单');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '隐藏菜单');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '正常状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '停用状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '正常状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '停用状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '默认分组');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '系统分组');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '系统默认是');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '系统默认否');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '通知');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '公告');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '正常状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '关闭状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '其他操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '新增操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '修改操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '删除操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '授权操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '导出操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '导入操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '强退操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '生成操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '清空操作');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '正常状态');
|
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2023-06-30 15:33:45', '', 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 AUTO_INCREMENT COMMENT '字典主键',
|
|
|
`dict_name` varchar(100) DEFAULT '' COMMENT '字典名称',
|
|
|
`dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
|
|
|
`status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
|
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`dict_id`),
|
|
|
UNIQUE KEY `dict_type` (`dict_type`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典类型表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_dict_type
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '用户性别列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '菜单状态列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '系统开关列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '任务状态', 'sys_job_status', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '任务状态列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '任务分组', 'sys_job_group', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '任务分组列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '系统是否列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '通知类型列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '通知状态列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '操作类型列表');
|
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2023-06-30 15:33:45', '', NULL, '登录状态列表');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_job
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_job`;
|
|
|
CREATE TABLE `sys_job` (
|
|
|
`job_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务ID',
|
|
|
`job_name` varchar(64) NOT NULL DEFAULT '' COMMENT '任务名称',
|
|
|
`job_group` varchar(64) NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名',
|
|
|
`invoke_target` varchar(500) NOT NULL COMMENT '调用目标字符串',
|
|
|
`cron_expression` varchar(255) DEFAULT '' COMMENT 'cron执行表达式',
|
|
|
`misfire_policy` varchar(20) DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)',
|
|
|
`concurrent` char(1) DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)',
|
|
|
`status` char(1) DEFAULT '0' COMMENT '状态(0正常 1暂停)',
|
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT '' COMMENT '备注信息',
|
|
|
PRIMARY KEY (`job_id`,`job_name`,`job_group`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='定时任务调度表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_job
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_job` (`job_id`, `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', '2023-06-30 15:33:45', '', NULL, '');
|
|
|
INSERT INTO `sys_job` (`job_id`, `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(\'ry\')', '0/15 * * * * ?', '3', '1', '1', 'admin', '2023-06-30 15:33:45', '', NULL, '');
|
|
|
INSERT INTO `sys_job` (`job_id`, `job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(\'ry\', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', '2023-06-30 15:33:45', '', NULL, '');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_job_log
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_job_log`;
|
|
|
CREATE TABLE `sys_job_log` (
|
|
|
`job_log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务日志ID',
|
|
|
`job_name` varchar(64) NOT NULL COMMENT '任务名称',
|
|
|
`job_group` varchar(64) NOT NULL COMMENT '任务组名',
|
|
|
`invoke_target` varchar(500) NOT NULL COMMENT '调用目标字符串',
|
|
|
`job_message` varchar(500) DEFAULT NULL COMMENT '日志信息',
|
|
|
`status` char(1) DEFAULT '0' COMMENT '执行状态(0正常 1失败)',
|
|
|
`exception_info` varchar(2000) DEFAULT '' COMMENT '异常信息',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
PRIMARY KEY (`job_log_id`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='定时任务调度日志表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_job_log
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_logininfor
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_logininfor`;
|
|
|
CREATE TABLE `sys_logininfor` (
|
|
|
`info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID',
|
|
|
`user_name` varchar(50) DEFAULT '' COMMENT '用户账号',
|
|
|
`ipaddr` varchar(128) DEFAULT '' COMMENT '登录IP地址',
|
|
|
`status` char(1) DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
|
|
|
`msg` varchar(255) DEFAULT '' COMMENT '提示信息',
|
|
|
`access_time` datetime DEFAULT NULL COMMENT '访问时间',
|
|
|
PRIMARY KEY (`info_id`),
|
|
|
KEY `idx_sys_logininfor_s` (`status`),
|
|
|
KEY `idx_sys_logininfor_lt` (`access_time`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统访问记录';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_logininfor
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (100, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 16:33:01');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (101, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:03:45');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (102, 'admin', '127.0.0.1', '1', '用户暂未分配园区,请联系管理员', '2023-06-30 20:04:32');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (103, 'admin', '127.0.0.1', '1', '用户暂未分配园区,请联系管理员', '2023-06-30 20:04:48');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (104, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:23:13');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (105, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:23:24');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (106, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:27:38');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (107, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:29:21');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (108, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:42:40');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (109, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:43:19');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (110, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:43:41');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (111, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:43:49');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (112, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:44:04');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (113, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:45:16');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (114, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:45:32');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (115, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:45:56');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (116, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:46:08');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (117, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:47:35');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (118, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:50:51');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (119, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:50:55');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (120, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 20:59:16');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (121, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 20:59:22');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (122, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 21:04:28');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (123, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 21:04:35');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (124, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 21:04:45');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (125, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 21:05:25');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (126, 'admin', '127.0.0.1', '0', '退出成功', '2023-06-30 21:05:38');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (127, 'admin', '127.0.0.1', '0', '登录成功', '2023-06-30 21:06:41');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (128, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 13:11:29');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (129, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 13:45:34');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (130, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 13:55:43');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (131, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 13:55:46');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (132, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 13:56:59');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (133, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 13:57:06');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (134, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:01:46');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (135, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:01:50');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (136, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:07:51');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (137, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:08:00');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (138, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:08:55');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (139, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:11:15');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (140, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:25:36');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (141, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:25:40');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (142, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:25:41');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (143, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:26:01');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (144, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:26:01');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (145, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:26:48');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (146, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:26:48');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (147, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:27:04');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (148, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:27:05');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (149, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:27:43');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (150, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:27:44');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (151, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:28:01');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (152, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:28:01');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (153, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:28:11');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (154, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 14:28:12');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (155, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 14:28:59');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (156, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 15:27:38');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (157, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 15:36:31');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (158, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 16:06:09');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (159, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 16:06:32');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (160, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 16:11:42');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (161, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 16:20:29');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (162, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 16:20:35');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (163, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 16:30:14');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (164, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 16:57:06');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (165, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 16:57:13');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (166, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 17:24:03');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (167, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 17:34:07');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (168, 'admin', '127.0.0.1', '1', '用户暂未分配园区,请联系管理员', '2023-07-03 17:34:14');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (169, 'admin', '127.0.0.1', '1', '用户暂未分配园区,请联系管理员', '2023-07-03 17:34:28');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (170, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 17:36:13');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (171, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 17:37:07');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (172, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 17:37:11');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (173, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 17:41:10');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (174, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 17:41:14');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (175, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-03 20:37:38');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (176, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-03 20:37:45');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (177, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 09:14:06');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (178, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 09:14:19');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (179, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 09:35:26');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (180, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 09:50:53');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (181, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 09:51:09');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (182, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 10:48:44');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (183, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 10:48:51');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (184, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 11:48:03');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (185, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 13:47:14');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (186, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 13:47:28');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (187, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 13:49:47');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (188, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 13:49:53');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (189, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 14:36:42');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (190, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 14:36:48');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (191, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 14:53:53');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (192, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-04 14:54:00');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (193, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-04 14:56:53');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (194, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-18 16:22:57');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (195, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-18 16:26:33');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (196, 'admin', '127.0.0.1', '1', '登录用户不存在', '2023-07-31 15:44:06');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (197, 'admin', '127.0.0.1', '0', '登录成功', '2023-07-31 15:44:09');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (198, 'admin', '127.0.0.1', '0', '退出成功', '2023-07-31 15:44:20');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (199, 'admin', '127.0.0.1', '0', '登录成功', '2023-08-21 10:53:41');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (200, 'admin', '127.0.0.1', '0', '退出成功', '2023-08-21 10:53:52');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (201, 'admin', '127.0.0.1', '0', '登录成功', '2023-08-21 10:54:57');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (202, 'admin', '127.0.0.1', '0', '退出成功', '2023-08-21 10:55:36');
|
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (203, 'admin', '127.0.0.1', '0', '登录成功', '2023-08-21 10:57:46');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_menu
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_menu`;
|
|
|
CREATE TABLE `sys_menu` (
|
|
|
`menu_id` bigint NOT NULL AUTO_INCREMENT 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` 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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT '' COMMENT '备注',
|
|
|
PRIMARY KEY (`menu_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2012 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`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统管理', 0, 1, 'system', NULL, '', 1, 0, 'M', '0', '0', '', 'system', 'admin', '2023-06-30 15:33:44', '', NULL, '系统管理目录');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统监控', 0, 2, 'monitor', NULL, '', 1, 0, 'M', '0', '0', '', 'monitor', 'admin', '2023-06-30 15:33:44', '', NULL, '系统监控目录');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统工具', 0, 3, 'tool', NULL, '', 1, 0, 'M', '0', '0', '', 'tool', 'admin', '2023-06-30 15:33:44', '', NULL, '系统工具目录');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '若依官网', 0, 4, 'http://ruoyi.vip', NULL, '', 0, 0, 'M', '0', '0', '', 'guide', 'admin', '2023-06-30 15:33:44', '', NULL, '若依官网地址');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '用户管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '角色管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '菜单管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '部门管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '岗位管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '字典管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '参数设置菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '通知公告菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', '2023-06-30 15:33:44', '', NULL, '日志管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '在线用户菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, '定时任务', 2, 2, 'job', 'monitor/job/index', '', 1, 0, 'C', '0', '0', 'monitor:job:list', 'job', 'admin', '2023-06-30 15:33:44', '', NULL, '定时任务菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (111, 'Sentinel控制台', 2, 3, 'http://localhost:8718', '', '', 0, 0, 'C', '0', '0', 'monitor:sentinel:list', 'sentinel', 'admin', '2023-06-30 15:33:44', '', NULL, '流量控制菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, 'Nacos控制台', 2, 4, 'http://localhost:8848/nacos', '', '', 0, 0, 'C', '0', '0', 'monitor:nacos:list', 'nacos', 'admin', '2023-06-30 15:33:44', '', NULL, '服务治理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, 'Admin控制台', 2, 5, 'http://localhost:9100/login', '', '', 0, 0, 'C', '0', '0', 'monitor:server:list', 'server', 'admin', '2023-06-30 15:33:44', '', NULL, '服务监控菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '表单构建菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `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', 'admin', '2023-06-30 15:33:44', '', NULL, '代码生成菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (116, '系统接口', 3, 3, 'http://localhost:8080/swagger-ui/index.html', '', '', 0, 0, 'C', '0', '0', 'tool:swagger:list', 'swagger', 'admin', '2023-06-30 15:33:44', '', NULL, '系统接口菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '操作日志', 108, 1, 'operlog', 'system/operlog/index', '', 1, 0, 'C', '0', '0', 'system:operlog:list', 'form', 'admin', '2023-06-30 15:33:44', '', NULL, '操作日志菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '登录日志', 108, 2, 'logininfor', 'system/logininfor/index', '', 1, 0, 'C', '0', '0', 'system:logininfor:list', 'logininfor', 'admin', '2023-06-30 15:33:44', '', NULL, '登录日志菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1000, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '日志导出', 500, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:operlog:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:logininfor:unlock', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1049, '任务查询', 110, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '任务新增', 110, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:add', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1051, '任务修改', 110, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1052, '任务删除', 110, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1053, '状态修改', 110, 5, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:changeStatus', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1054, '任务导出', 110, 6, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:job:export', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2000, '数据管理', 1, 10, 'datasource', 'system/datasource/index', NULL, 1, 0, 'C', '0', '0', 'system:datasource:list', 'dashboard', 'admin', '2023-07-03 15:10:58', 'admin', '2023-07-03 15:24:32', '数据管理菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2001, '数据管理查询', 2000, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:datasource:query', '#', 'admin', '2023-07-03 15:10:59', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2002, '数据管理新增', 2000, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:datasource:add', '#', 'admin', '2023-07-03 15:11:00', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2003, '数据管理修改', 2000, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:datasource:edit', '#', 'admin', '2023-07-03 15:11:01', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2004, '数据管理删除', 2000, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:datasource:remove', '#', 'admin', '2023-07-03 15:11:01', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2005, '数据管理导出', 2000, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:datasource:export', '#', 'admin', '2023-07-03 15:11:02', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2006, '用户数据', 1, 11, 'userdatasource', 'system/userdatasource/index', NULL, 1, 0, 'C', '1', '0', 'system:userdatasource:list', 'user', 'admin', '2023-07-03 15:40:35', 'admin', '2023-07-18 16:24:44', '用户数据菜单');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2007, '用户数据查询', 2006, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:userdatasource:query', '#', 'admin', '2023-07-03 15:40:37', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2008, '用户数据新增', 2006, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:userdatasource:add', '#', 'admin', '2023-07-03 15:40:37', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2009, '用户数据修改', 2006, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:userdatasource:edit', '#', 'admin', '2023-07-03 15:40:38', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2010, '用户数据删除', 2006, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:userdatasource:remove', '#', 'admin', '2023-07-03 15:40:38', '', NULL, '');
|
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2011, '用户数据导出', 2006, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'system:userdatasource:export', '#', 'admin', '2023-07-03 15:40:39', '', NULL, '');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_notice
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_notice`;
|
|
|
CREATE TABLE `sys_notice` (
|
|
|
`notice_id` int NOT NULL AUTO_INCREMENT COMMENT '公告ID',
|
|
|
`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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`notice_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_notice
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 'admin', '2023-06-30 15:33:45', '', NULL, '管理员');
|
|
|
INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 'admin', '2023-06-30 15:33:45', '', 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 AUTO_INCREMENT 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 AUTO_INCREMENT=181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='操作日志记录';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_oper_log
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (100, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"sys_datasource\"}', NULL, 0, NULL, '2023-07-03 15:06:31', 475);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (101, '数据管理', 3, 'com.ruoyi.system.controller.SysDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/datasource/2aaa', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:13:03', 172);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (102, '数据管理', 2, 'com.ruoyi.system.controller.SysDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createBy\":\"\",\"delFlag\":\"0\",\"deptId\":103,\"driveClassName\":\"com.mysql.cj.jdbc.Driver\",\"id\":\"1\",\"ipPort\":\"124.70.63.37:3306/hw_ems_1\",\"params\":{},\"parkName\":\"智慧场景\",\"poolName\":\"sf_hw_ems\",\"schemaCreated\":\"0\",\"status\":\"0\",\"systemType\":\"energy\",\"updateBy\":\"\",\"updateTime\":\"2023-07-03 15:13:23\",\"url\":\"jdbc:mysql://124.70.63.37:3306/hw_ems_1?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\",\"userName\":\"root\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:13:23', 256);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (103, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/datasource/index\",\"createTime\":\"2023-07-03 15:10:58\",\"icon\":\"dashboard\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2000,\"menuName\":\"数据管理\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":1,\"path\":\"datasource\",\"perms\":\"system:datasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:24:18', 295);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (104, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/datasource/index\",\"createTime\":\"2023-07-03 15:10:58\",\"icon\":\"dashboard\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2000,\"menuName\":\"数据管理\",\"menuType\":\"C\",\"orderNum\":10,\"params\":{},\"parentId\":1,\"path\":\"datasource\",\"perms\":\"system:datasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:24:32', 228);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (105, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"sys_user_datasource\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:25:43', 951);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (106, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"sys_user_datasource\"}', NULL, 0, NULL, '2023-07-03 15:27:05', 324);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (107, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"sys_user_datasource\"}', NULL, 0, NULL, '2023-07-03 15:37:01', 437);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (108, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/2aaa,2aaa', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:41:01', 181);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (109, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1,1,1,1,1,1,1,1,1,1,1,1,1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:41:22', 155);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (110, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/userdatasource/index\",\"createTime\":\"2023-07-03 15:40:35\",\"icon\":\"user\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2006,\"menuName\":\"用户数据\",\"menuType\":\"C\",\"orderNum\":11,\"params\":{},\"parentId\":1,\"path\":\"userdatasource\",\"perms\":\"system:userdatasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 15:42:59', 356);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (111, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-03 15:45:43\",\"driveClassName\":\"mysql\",\"ipPort\":\"127.0.0.1\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"1\",\"status\":\"0\",\"url\":\"jdbc:mysql://124.70.63.37:3306/hw_ems_1?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\",\"userName\":\"root\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysDatasourceMapper.insertSysDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_datasource ( url, ip_port, user_name, password, drive_class_name, pool_name, park_name, status, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2023-07-03 15:45:44', 388);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (112, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-03 15:48:56\",\"driveClassName\":\"1\",\"ipPort\":\"1\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"1\",\"status\":\"0\",\"url\":\"1\",\"userName\":\"1\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysDatasourceMapper.insertSysDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_datasource ( url, ip_port, user_name, password, drive_class_name, pool_name, park_name, status, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2023-07-03 15:48:57', 278);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (113, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-03 15:51:23\",\"driveClassName\":\"测试\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysDatasourceMapper.insertSysDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_datasource ( url, ip_port, user_name, password, drive_class_name, pool_name, park_name, status, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2023-07-03 15:51:24', 171);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (114, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-03 15:51:44\",\"driveClassName\":\"测试\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysDatasourceMapper.insertSysDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_datasource ( url, ip_port, user_name, password, drive_class_name, pool_name, park_name, status, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2023-07-03 15:51:45', 153);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (115, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-03 16:06:58\",\"driveClassName\":\"测试\",\"id\":\"5fbd2a4a-2692-4e64-8330-e131406b27ff\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:06:59', 310);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (116, '数据管理', 3, 'com.ruoyi.system.controller.SysDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/datasource/5fbd2a4a-2692-4e64-8330-e131406b27ff', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:07:15', 155);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (117, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"params\":{}}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysUserDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysUserDatasourceMapper.insertSysUserDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_user_datasource\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1', '2023-07-03 16:32:43', 313);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (118, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"params\":{}}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysUserDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysUserDatasourceMapper.insertSysUserDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_user_datasource\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1', '2023-07-03 16:34:06', 30915);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (119, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:36:48', 144);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (120, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:36:57', 132);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (121, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:37:38', 7090);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (122, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:41:58', 4698);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (123, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:46:02', 4415);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (124, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:46:10', 185);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (125, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:46:19', 2760);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (126, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"params\":{},\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:46:28', 2675);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (127, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/sys_user_datasource', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 16:48:47', 1150);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (128, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/2', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:18:20', 220);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (129, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":3,\"params\":{},\"userId\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:25:22', 373);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (130, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":1,\"params\":{},\"userId\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:25:26', 88);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (131, '用户数据', 2, 'com.ruoyi.system.controller.SysUserDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":1,\"params\":{},\"userId\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:36:28', 177);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (132, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":4,\"params\":{},\"userId\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:36:34', 189);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (133, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:36:39', 156);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (134, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:36:44', 189);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (135, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:36:49', 154);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (136, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:37:25', 133);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (137, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":5,\"params\":{},\"userId\":\"4\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:37:51', 158);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (138, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:37:54', 142);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (139, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:38:07', 160);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (140, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:38:47', 137);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (141, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:39:49', 142);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (142, '用户数据', 1, 'com.ruoyi.system.controller.SysUserDatasourceController.add()', 'POST', 1, 'admin', NULL, '/userdatasource', '127.0.0.1', '', '{\"datasourceId\":\"1\",\"id\":6,\"params\":{},\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-03 17:40:21', 168);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (143, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:40:25', 195);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (144, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 17:40:28', 128);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (145, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 20:38:51', 137);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (146, '用户数据', 3, 'com.ruoyi.system.controller.SysUserDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/userdatasource/1', '127.0.0.1', '', '{}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2023-07-03 20:39:56', 123);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (147, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 10:51:22', 1451);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (148, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:26:24', 43502);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (149, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:27:26', 1695);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (150, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:34:08', 2030);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (151, '用户管理', 1, 'com.ruoyi.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"createBy\":\"admin\",\"datasourceId\":\"1\",\"deptId\":100,\"email\":\"15872898765@163.com\",\"nickName\":\"ces12\",\"params\":{},\"phonenumber\":\"15872898765\",\"postIds\":[4],\"roleIds\":[2],\"sex\":\"0\",\"status\":\"0\",\"userId\":24,\"userName\":\"测试\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: insert into sys_user_datasource(user_id, datasource_id) values\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 1', '2023-07-04 11:35:53', 1741);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (152, '用户管理', 1, 'com.ruoyi.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"createBy\":\"admin\",\"datasourceId\":\"1\",\"deptId\":100,\"email\":\"15872898765@163.com\",\"nickName\":\"测22\",\"params\":{},\"phonenumber\":\"15872898765\",\"postIds\":[],\"roleIds\":[2],\"sex\":\"0\",\"status\":\"0\",\"userId\":25,\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:41:14', 4328);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (153, '用户管理', 3, 'com.ruoyi.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/25', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:41:42', 802);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (154, '用户管理', 1, 'com.ruoyi.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"createBy\":\"admin\",\"datasourceId\":\"1\",\"deptId\":100,\"email\":\"15872898765@163.com\",\"nickName\":\"测试2\",\"params\":{},\"phonenumber\":\"15872898765\",\"postIds\":[],\"roleIds\":[2],\"status\":\"0\",\"userId\":26,\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:43:04', 36116);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (155, '用户管理', 3, 'com.ruoyi.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/26', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:43:15', 782);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (156, '用户管理', 1, 'com.ruoyi.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"createBy\":\"admin\",\"datasourceId\":\"1\",\"deptId\":100,\"email\":\"17689766892@163.com\",\"nickName\":\"测试\",\"params\":{},\"phonenumber\":\"17689766892\",\"postIds\":[],\"roleIds\":[2],\"sex\":\"0\",\"status\":\"0\",\"userId\":27,\"userName\":\"测试2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 11:49:06', 20934);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (157, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:48:45', 2805);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (158, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:50:09', 1338);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (159, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:51:34', 28707);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (160, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:54:19', 15435);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (161, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:56:52', 1113);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (162, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:59:04', 4878);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (163, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 13:59:48', 15286);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (164, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:01:45', 33074);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (165, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:03:37', 11156);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (166, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:50:44\",\"datasourceId\":\"1\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"刘琳\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":4,\"userName\":\"ta082847\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:19:56', 3904);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (167, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/userdatasource/index\",\"createTime\":\"2023-07-03 15:40:35\",\"icon\":\"user\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2006,\"menuName\":\"用户数据\",\"menuType\":\"C\",\"orderNum\":11,\"params\":{},\"parentId\":1,\"path\":\"userdatasource\",\"perms\":\"system:userdatasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:20:30', 295);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (168, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-04 14:37:21\",\"driveClassName\":\"测试\",\"id\":\"9e4601c2-f010-4eeb-bd84-459532ea9903\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:37:21', 588);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (169, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/userdatasource/index\",\"createTime\":\"2023-07-03 15:40:35\",\"icon\":\"user\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2006,\"menuName\":\"用户数据\",\"menuType\":\"C\",\"orderNum\":11,\"params\":{},\"parentId\":1,\"path\":\"userdatasource\",\"perms\":\"system:userdatasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:38:21', 338);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (170, '数据管理', 3, 'com.ruoyi.system.controller.SysDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/datasource/9e4601c2-f010-4eeb-bd84-459532ea9903', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:43:16', 219);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (171, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-04 14:43:35\",\"datasourceId\":\"6fbba8ac-7382-42d5-b5a6-5d4c6a2e8246\",\"driveClassName\":\"测试\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in file [/Users/wenxiansheng/Desktop/SAAS平台/RuoYi-Cloud/ruoyi-modules/ruoyi-system/target/classes/mapper/system/SysDatasourceMapper.xml]\n### The error may involve com.ruoyi.system.mapper.SysDatasourceMapper.insertSysDatasource-Inline\n### The error occurred while setting parameters\n### SQL: insert into sys_datasource ( url, ip_port, user_name, password, drive_class_name, pool_name, park_name, status, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2023-07-04 14:43:36', 1022);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (172, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-04 14:45:25\",\"driveClassName\":\"查尔斯\",\"id\":\"0951087a-00ad-47a0-bbb8-1780411259cc\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:45:26', 526);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (173, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:49:13\",\"datasourceId\":\"1,0951087a-00ad-47a0-bbb8-1780411259cc\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"汤晋卿\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":3,\"userName\":\"ta114416\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:45:50', 1681);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (174, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"admin\",\"createTime\":\"2023-05-12 14:51:16\",\"datasourceId\":\"0951087a-00ad-47a0-bbb8-1780411259cc\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0,100,101\",\"children\":[],\"deptId\":103,\"deptName\":\"研发部门\",\"leader\":\"若依\",\"orderNum\":1,\"params\":{},\"parentId\":101,\"status\":\"0\"},\"deptId\":103,\"loginIp\":\"\",\"nickName\":\"周仕亮\",\"params\":{},\"phonenumber\":\"\",\"postIds\":[],\"roleIds\":[],\"roles\":[],\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":5,\"userName\":\"01413641\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:46:00', 1067);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (175, '数据管理', 3, 'com.ruoyi.system.controller.SysDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/datasource/0951087a-00ad-47a0-bbb8-1780411259cc', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:46:29', 195);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (176, '数据管理', 1, 'com.ruoyi.system.controller.SysDatasourceController.add()', 'POST', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createTime\":\"2023-07-04 14:51:54\",\"driveClassName\":\"测试\",\"id\":\"c62a3593-6c87-4dff-8459-e8e7252b7c1e\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"status\":\"0\",\"url\":\"测试\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:51:55', 541);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (177, '数据管理', 2, 'com.ruoyi.system.controller.SysDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createBy\":\"\",\"createTime\":\"2023-07-04 14:51:54\",\"delFlag\":\"0\",\"driveClassName\":\"测试\",\"id\":\"c62a3593-6c87-4dff-8459-e8e7252b7c1e\",\"ipPort\":\"测试\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"schemaCreated\":\"0\",\"status\":\"0\",\"updateBy\":\"\",\"updateTime\":\"2023-07-04 14:52:10\",\"url\":\"jdbc:mysql://124.70.63.37:3306/hw_ems_1?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:52:10', 185);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (178, '数据管理', 2, 'com.ruoyi.system.controller.SysDatasourceController.edit()', 'PUT', 1, 'admin', NULL, '/datasource', '127.0.0.1', '', '{\"createBy\":\"\",\"createTime\":\"2023-07-04 14:51:54\",\"delFlag\":\"0\",\"driveClassName\":\"测试\",\"id\":\"c62a3593-6c87-4dff-8459-e8e7252b7c1e\",\"ipPort\":\"124.70.63.37:3306/hw_ems_1\",\"params\":{},\"parkName\":\"测试\",\"poolName\":\"测试\",\"schemaCreated\":\"0\",\"status\":\"0\",\"updateBy\":\"\",\"updateTime\":\"2023-07-04 14:52:26\",\"url\":\"jdbc:mysql://124.70.63.37:3306/hw_ems_1?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\",\"userName\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:52:26', 193);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (179, '数据管理', 3, 'com.ruoyi.system.controller.SysDatasourceController.remove()', 'DELETE', 1, 'admin', NULL, '/datasource/0951087a-00ad-47a0-bbb8-1780411259cc', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-04 14:54:21', 496);
|
|
|
INSERT INTO `sys_oper_log` (`oper_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 (180, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/userdatasource/index\",\"createTime\":\"2023-07-03 15:40:35\",\"icon\":\"user\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2006,\"menuName\":\"用户数据\",\"menuType\":\"C\",\"orderNum\":11,\"params\":{},\"parentId\":1,\"path\":\"userdatasource\",\"perms\":\"system:userdatasource:list\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-07-18 16:24:45', 180);
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_post
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_post`;
|
|
|
CREATE TABLE `sys_post` (
|
|
|
`post_id` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID',
|
|
|
`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_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`post_id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='岗位信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_post
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2023-06-30 15:33:44', '', NULL, '');
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_role
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_role`;
|
|
|
CREATE TABLE `sys_role` (
|
|
|
`role_id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID',
|
|
|
`role_name` varchar(30) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '角色名称',
|
|
|
`role_key` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '角色权限字符串',
|
|
|
`role_sort` int NOT NULL COMMENT '显示顺序',
|
|
|
`data_scope` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '角色状态(0正常 1停用)',
|
|
|
`del_flag` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
|
`create_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`role_id`) USING BTREE
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='角色信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_role
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '超级管理员', 'admin', 1, '1', 1, 1, '0', '0', 'admin', '2023-04-18 15:29:05', '', NULL, '超级管理员');
|
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '普通角色', 'common', 2, '2', 1, 1, '0', '0', 'admin', '2023-04-18 15:29:05', '', NULL, '普通角色');
|
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '西安园区数据权限', 'xapark', 3, '4', 1, 1, '0', '0', 'admin', '2023-05-11 16:10:13', 'admin', '2023-05-19 15:46:05', 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, 1049);
|
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1050);
|
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1051);
|
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1052);
|
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1053);
|
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1054);
|
|
|
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);
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_user
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_user`;
|
|
|
CREATE TABLE `sys_user` (
|
|
|
`user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID',
|
|
|
`dept_id` bigint DEFAULT NULL COMMENT '部门ID',
|
|
|
`user_name` varchar(30) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '用户账号',
|
|
|
`nick_name` varchar(30) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '用户昵称',
|
|
|
`user_type` varchar(2) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '00' COMMENT '用户类型(00系统用户)',
|
|
|
`email` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '用户邮箱',
|
|
|
`phonenumber` varchar(11) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '手机号码',
|
|
|
`sex` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
|
|
|
`avatar` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '头像地址',
|
|
|
`password` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '密码',
|
|
|
`status` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
|
|
|
`del_flag` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
|
`login_ip` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '最后登录IP',
|
|
|
`login_date` datetime DEFAULT NULL COMMENT '最后登录时间',
|
|
|
`create_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '创建者',
|
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
|
`update_by` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '' COMMENT '更新者',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
`remark` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '备注',
|
|
|
PRIMARY KEY (`user_id`) USING BTREE
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb3 COMMENT='用户信息表';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_user
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 103, 'admin', 'SF', '00', 'sf-energy@kehaida.com', '15888888888', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2023-04-18 15:29:04', 'admin', '2023-04-18 15:29:04', '', '2023-05-16 16:47:57', '管理员');
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 105, 'ry', 'SF', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '2', '127.0.0.1', '2023-04-18 15:29:04', 'admin', '2023-04-18 15:29:04', '', NULL, '测试员');
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 103, 'ta114416', '汤晋卿', '00', NULL, '', '0', '', '$2a$10$1YeLcyCxBX7A22jTgkxXs.NQuiD3/64FLB39oR2OVFmXwcCfgfVoy', '0', '0', '', NULL, 'admin', '2023-05-12 14:49:13', 'admin', '2023-07-04 14:45:49', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 103, 'ta082847', '刘琳', '00', NULL, '', '0', '', '$2a$10$H8sfeQNN8EGjGgLrY9QpDuUUZq944PvxYIF7CU2dnM.FIeeOUafia', '0', '0', '', NULL, 'admin', '2023-05-12 14:50:44', 'admin', '2023-07-04 14:19:55', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 103, '01413641', '周仕亮', '00', NULL, '', '0', '', '$2a$10$o2678QRWLRPmKsHiQ7EFv.alObBfNVcSjp2z78g1iRFvoSVFPhoFe', '0', '0', '', NULL, 'admin', '2023-05-12 14:51:16', 'admin', '2023-07-04 14:46:00', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 103, '01402072', '秦奋', '00', NULL, '', '0', '', '$2a$10$P37v73BpRgE1DmFB6nSl../x6Zaf0ZG1rlZGjKIpKvsKtG1WchB/W', '0', '0', '', NULL, 'admin', '2023-05-12 14:51:48', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, 103, '01416720', '李俊鹏', '00', NULL, '', '0', '', '$2a$10$3kEE.of7vxjrZkKdC.6ivu.TFHDhkK/WnTHZyJXwohuOXEQwc4wlK', '0', '0', '', NULL, 'admin', '2023-05-12 14:52:08', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, 103, '01395814', '林志卫', '00', NULL, '', '0', '', '$2a$10$VjCTi1bReC.zvzBRlF7rauyCBlP9x1CQKXm.p7X5kqtmB0aNuvp4W', '0', '0', '', NULL, 'admin', '2023-05-12 14:52:43', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, 103, 'ta110372', '殷强', '00', NULL, '', '0', '', '$2a$10$COkg1DtgP5R7Cb5ho3T4s.Ogc56S189Axo/DFk5ntHAEA2qa8OQbG', '0', '2', '', NULL, 'admin', '2023-05-12 14:53:10', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, 103, 'ta110371', '温继越', '00', NULL, '', '0', '', '$2a$10$gYvtYFJYywN1UIsTnDXPwu25WpkpsL/9OaRcDHyPf/n6K/VVn00UG', '0', '0', '', NULL, 'admin', '2023-05-12 14:54:48', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, 108, 'luan', '栾泽航', '00', NULL, '', '0', '', '$2a$10$TGI9XBmlzOOfmco4QvJj9.Bel8PJpZJO3VuSu7qpfbfhDJ0VcsC/O', '0', '0', '', NULL, 'admin', '2023-05-12 14:55:15', 'admin', '2023-05-19 16:47:25', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, 108, '11111', '测试用户', '00', '', '', '0', '', '$2a$10$okc1/M828T6Hjogiq/O9ue1AOmpVEs9u/EXjdx9FiXHwsxN9OeYlq', '0', '2', '', NULL, 'admin', '2023-05-18 20:11:07', 'admin', '2023-05-19 09:21:33', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, 108, '22222', 'ceshi', '00', '', '', '0', '', '$2a$10$GB3kMo2gR/5v7arkhWLp7eWGLk3lGqFtHg4.PEOFXFJCpovZSrbYa', '0', '2', '', NULL, 'admin', '2023-05-18 20:20:10', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, 103, 'YQ', 'ta110372', '00', '', '', '0', '', '$2a$10$kbi/gjbKjMrsslfkQ2GH1uiND2vgLQKdiLpkGf.pmSVFTeDsatXhS', '0', '2', '', NULL, 'admin', '2023-05-19 09:01:21', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, 103, 'ta110372', 'YQ', '00', '', '', '0', '', '$2a$10$wGIJf/3wC9oWopBT4ydSqeIficiIRe1bZvMOL9dBmikEftLxHgGny', '0', '0', '', NULL, 'admin', '2023-05-19 09:02:09', 'admin', '2023-05-19 09:03:17', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, NULL, '6654', '555', '00', '', '', '0', '', '$2a$10$ouwopBqUrgEWMY9LDKu33uBl/.qAE8W77mzr3OV4HUYXLgqcHa/TK', '0', '0', '', NULL, 'ta110372', '2023-05-19 09:11:45', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, NULL, 'ceshi', '测试1', '00', '', '', '0', '', '$2a$10$hV010YAyvtPMN6mfBFMY9ufPNloNzBnLngTN5fyP47UObSBw3KY/2', '0', '2', '', NULL, 'admin', '2023-05-19 09:23:52', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, 103, 'ceshi1', '测试', '00', '', '', '0', '', '$2a$10$pAXKi/cfmG2stT/PySWYsOTLOG7dX8HbPJChB/WSKRS4jc8CJ3sXW', '0', '2', '', NULL, 'admin', '2023-05-19 09:24:48', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, 108, 'ceshi1', 'ceshi1', '00', '', '', '0', '', '$2a$10$vBSY0mq9lTvx05OMC0QMq.RqO2D4JTj3uw1CNTQZFfMu6WNGhrwf.', '0', '2', '', NULL, 'ta114416', '2023-05-19 09:52:32', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, 103, 'test', '测试01', '00', '', '', '0', '', '$2a$10$/alkf8sxRLBE./Wyrvya9uULjfRezjRVLh0QRiy3JfCGQr6ZkaK86', '0', '0', '', NULL, 'ta110372', '2023-05-19 14:00:33', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, 103, 'zxl2', 'test2', '00', '1242718574@qq.cm', '13573881632', '0', '', '$2a$10$YCRmLT72oJ93VsWwxYeXmeHmJrgbklYdx8.RGXYGaql.RlkxXw97q', '0', '0', '', NULL, 'test', '2023-05-19 16:10:47', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, 108, 'zxlno2', 'zxl2', '00', '1242718574@qq.com', '13578337625', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '', NULL, 'admin', '2023-05-19 16:38:15', 'admin', '2023-05-19 16:39:10', NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, 100, '测试', '测22', '00', '15872898765@163.com', '15872898765', '0', '', '$2a$10$z2qCn2PX19Mfgj/NAy1n2eZSd1ggOE/as.FjTEk.ZQRGLqIjKYdTO', '0', '2', '', NULL, 'admin', '2023-07-04 11:41:12', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, 100, '测试', '测试2', '00', '15872898765@163.com', '15872898765', '0', '', '$2a$10$QGrqMxluU5GbzOjoce.tU.XQZ1gm5KPxbpLsaae014E7WGcvdQNfK', '0', '2', '', NULL, 'admin', '2023-07-04 11:43:03', '', NULL, NULL);
|
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, 100, '测试2', '测试', '00', '17689766892@163.com', '17689766892', '0', '', '$2a$10$WsAdGMY9fmxKA4ugESKcqeOStlTvPBGje5930G1jv9MkdpDBNQaCO', '0', '0', '', NULL, 'admin', '2023-07-04 11:48:45', '', NULL, NULL);
|
|
|
COMMIT;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Table structure for sys_user_datasource
|
|
|
-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `sys_user_datasource`;
|
|
|
CREATE TABLE `sys_user_datasource` (
|
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
|
`datasource_id` varchar(64) DEFAULT NULL,
|
|
|
`user_id` varchar(64) DEFAULT NULL,
|
|
|
PRIMARY KEY (`id`)
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- Records of sys_user_datasource
|
|
|
-- ----------------------------
|
|
|
BEGIN;
|
|
|
INSERT INTO `sys_user_datasource` (`id`, `datasource_id`, `user_id`) VALUES (3, '1', '1');
|
|
|
INSERT INTO `sys_user_datasource` (`id`, `datasource_id`, `user_id`) VALUES (15, '1', '27');
|
|
|
INSERT INTO `sys_user_datasource` (`id`, `datasource_id`, `user_id`) VALUES (21, '1', '4');
|
|
|
INSERT INTO `sys_user_datasource` (`id`, `datasource_id`, `user_id`) VALUES (25, '1', '3');
|
|
|
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);
|
|
|
INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (27, 2);
|
|
|
COMMIT;
|
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|