@ -11,7 +11,7 @@
Target Server Version : 80200 ( 8 . 2 . 0 )
Target Server Version : 80200 ( 8 . 2 . 0 )
File Encoding : 65001
File Encoding : 65001
Date : 0 7/ 10 / 2024 15 : 55 : 58
Date : 0 9/ 11 / 2024 18 : 16 : 12
* /
* /
SET NAMES utf8mb4 ;
SET NAMES utf8mb4 ;
@ -64,7 +64,7 @@ DROP TABLE IF EXISTS `infra_api_error_log`;
CREATE TABLE ` infra_api_error_log ` (
CREATE TABLE ` infra_api_error_log ` (
` id ` bigint NOT NULL AUTO_INCREMENT COMMENT ' 编号 ' ,
` id ` bigint NOT NULL AUTO_INCREMENT COMMENT ' 编号 ' ,
` trace_id ` varchar ( 64 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 链路追踪编号 ' ,
` trace_id ` varchar ( 64 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 链路追踪编号 ' ,
` user_id ` int NOT NULL DEFAULT 0 COMMENT ' 用户编号 ' ,
` user_id ` big int NOT NULL DEFAULT 0 COMMENT ' 用户编号 ' ,
` user_type ` tinyint NOT NULL DEFAULT 0 COMMENT ' 用户类型 ' ,
` user_type ` tinyint NOT NULL DEFAULT 0 COMMENT ' 用户类型 ' ,
` application_name ` varchar ( 50 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 应用名 ' ,
` application_name ` varchar ( 50 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 应用名 ' ,
` request_method ` varchar ( 16 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 请求方法名 ' ,
` request_method ` varchar ( 16 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 请求方法名 ' ,
@ -91,7 +91,7 @@ CREATE TABLE `infra_api_error_log` (
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 21 016 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 系统异常日志 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 21 213 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 系统异常日志 ' ;
-- ----------------------------
-- ----------------------------
-- Records of infra_api_error_log
-- Records of infra_api_error_log
@ -250,7 +250,7 @@ CREATE TABLE `infra_file` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 15 09 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 文件表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 15 58 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 文件表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of infra_file
-- Records of infra_file
@ -275,14 +275,19 @@ CREATE TABLE `infra_file_config` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 文件配置表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 2 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 文件配置表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of infra_file_config
-- Records of infra_file_config
-- ----------------------------
-- ----------------------------
BEGIN ;
BEGIN ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 4 , ' 数据库 ' , 1 , ' 我是数据库 ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.db.DBFileClientConfig\",\"domain\":\"http://127.0.0.1:48080\"} ' , ' 1 ' , ' 2022-03-15 23:56:24 ' , ' 1 ' , ' 2024-02-28 22:54:07 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 4 , ' 数据库(示例) ' , 1 , ' 我是数据库 ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.db.DBFileClientConfig\",\"domain\":\"http://127.0.0.1:48080\"} ' , ' 1 ' , ' 2022-03-15 23:56:24 ' , ' 1 ' , ' 2024-11-09 18:09:28 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 22 , ' 七牛存储器 ' , 20 , ' ' , b ' 1 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3.cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"3TvrJ70gl2Gt6IBe7_IZT1F6i_k0iMuRtyEv4EyS\",\"accessSecret\":\"wd0tbVBYlp0S-ihA8Qg2hPLncoP83wyrIq24OZuY\"} ' , ' 1 ' , ' 2024-01-13 22:11:12 ' , ' 1 ' , ' 2024-04-03 19:38:34 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 22 , ' 七牛存储器(示例) ' , 20 , ' 请换成你自己的密钥!!! ' , b ' 1 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3.cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"3TvrJ70gl2Gt6IBe7_IZT1F6i_k0iMuRtyEv4EyS\",\"accessSecret\":\"wd0tbVBYlp0S-ihA8Qg2hPLncoP83wyrIq24OZuY\"} ' , ' 1 ' , ' 2024-01-13 22:11:12 ' , ' 1 ' , ' 2024-11-09 18:09:28 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 24 , ' 腾讯云存储(示例) ' , 20 , ' 请换成你的密钥!!! ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"https://cos.ap-shanghai.myqcloud.com\",\"domain\":\"http://tengxun-oss.iocoder.cn\",\"bucket\":\"aoteman-1255880240\",\"accessKey\":\"AKIDAF6WSh1uiIjwqtrOsGSN3WryqTM6cTMt\",\"accessSecret\":\"X\"} ' , ' 1 ' , ' 2024-11-09 16:03:22 ' , ' 1 ' , ' 2024-11-09 18:15:39 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 25 , ' 阿里云存储(示例) ' , 20 , ' ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"oss-cn-beijing.aliyuncs.com\",\"domain\":\"http://ali-oss.iocoder.cn\",\"bucket\":\"yunai-aoteman\",\"accessKey\":\"LTAI5tEQLgnDyjh3WpNcdMKA\",\"accessSecret\":\"X\"} ' , ' 1 ' , ' 2024-11-09 16:47:08 ' , ' 1 ' , ' 2024-11-09 18:15:43 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 26 , ' 火山云存储(示例) ' , 20 , ' ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"tos-s3-cn-beijing.volces.com\",\"domain\":null,\"bucket\":\"yunai\",\"accessKey\":\"AKLTZjc3Zjc4MzZmMjU3NDk0ZTgxYmIyMmFkNTIwMDI1ZGE\",\"accessSecret\":\"X==\"} ' , ' 1 ' , ' 2024-11-09 16:56:42 ' , ' 1 ' , ' 2024-11-09 18:15:46 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 27 , ' 华为云存储(示例) ' , 20 , ' ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"obs.cn-east-3.myhuaweicloud.com\",\"domain\":\"\",\"bucket\":\"yudao\",\"accessKey\":\"PVDONDEIOTW88LF8DC4U\",\"accessSecret\":\"X\"} ' , ' 1 ' , ' 2024-11-09 17:18:41 ' , ' 1 ' , ' 2024-11-09 18:15:49 ' , b ' 0 ' ) ;
INSERT INTO ` infra_file_config ` ( ` id ` , ` name ` , ` storage ` , ` remark ` , ` master ` , ` config ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 28 , ' MinIO 存储(示例) ' , 20 , ' ' , b ' 0 ' , ' {\"@class\":\"cn.iocoder.yudao.module.infra.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"http://127.0.0.1:9000\",\"domain\":\"http://127.0.0.1:9000/yudao\",\"bucket\":\"yudao\",\"accessKey\":\"admin\",\"accessSecret\":\"password\"} ' , ' 1 ' , ' 2024-11-09 17:43:10 ' , ' 1 ' , ' 2024-11-09 18:15:52 ' , b ' 0 ' ) ;
COMMIT ;
COMMIT ;
-- ----------------------------
-- ----------------------------
@ -328,7 +333,7 @@ CREATE TABLE `infra_job` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 定时任务表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 3 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 定时任务表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of infra_job
-- Records of infra_job
@ -345,6 +350,7 @@ INSERT INTO `infra_job` (`id`, `name`, `status`, `handler_name`, `handler_param`
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 25 , ' 访问日志清理 Job ' , 2 , ' accessLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 10:59:41 ' , ' 1 ' , ' 2023-10-03 11:01:10 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 25 , ' 访问日志清理 Job ' , 2 , ' accessLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 10:59:41 ' , ' 1 ' , ' 2023-10-03 11:01:10 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 26 , ' 错误日志清理 Job ' , 2 , ' errorLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 11:00:43 ' , ' 1 ' , ' 2023-10-03 11:01:12 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 26 , ' 错误日志清理 Job ' , 2 , ' errorLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 11:00:43 ' , ' 1 ' , ' 2023-10-03 11:01:12 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 27 , ' 任务日志清理 Job ' , 2 , ' jobLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 11:01:33 ' , ' 1 ' , ' 2024-09-12 13:40:34 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 27 , ' 任务日志清理 Job ' , 2 , ' jobLogCleanJob ' , ' ' , ' 0 0 0 * * ? ' , 3 , 0 , 0 , ' 1 ' , ' 2023-10-03 11:01:33 ' , ' 1 ' , ' 2024-09-12 13:40:34 ' , b ' 0 ' ) ;
INSERT INTO ` infra_job ` ( ` id ` , ` name ` , ` status ` , ` handler_name ` , ` handler_param ` , ` cron_expression ` , ` retry_count ` , ` retry_interval ` , ` monitor_timeout ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 33 , ' demoJob ' , 2 , ' demoJob ' , ' ' , ' 0 * * * * ? ' , 1 , 1 , 0 , ' 1 ' , ' 2024-10-27 19:38:46 ' , ' 1 ' , ' 2024-10-27 19:40:23 ' , b ' 0 ' ) ;
COMMIT ;
COMMIT ;
-- ----------------------------
-- ----------------------------
@ -368,7 +374,7 @@ CREATE TABLE `infra_job_log` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 63 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 定时任务日志表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 63 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 定时任务日志表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of infra_job_log
-- Records of infra_job_log
@ -438,7 +444,7 @@ CREATE TABLE `system_dict_data` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 59 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典数据表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 1 68 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典数据表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_dict_data
-- Records of system_dict_data
@ -509,6 +515,7 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 86 , 0 , ' 病假 ' , ' 1 ' , ' bpm_oa_leave_type ' , 0 , ' primary ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:35:28 ' , ' 1 ' , ' 2022-02-16 10:00:41 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 86 , 0 , ' 病假 ' , ' 1 ' , ' bpm_oa_leave_type ' , 0 , ' primary ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:35:28 ' , ' 1 ' , ' 2022-02-16 10:00:41 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 87 , 1 , ' 事假 ' , ' 2 ' , ' bpm_oa_leave_type ' , 0 , ' info ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:36:11 ' , ' 1 ' , ' 2022-02-16 10:00:49 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 87 , 1 , ' 事假 ' , ' 2 ' , ' bpm_oa_leave_type ' , 0 , ' info ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:36:11 ' , ' 1 ' , ' 2022-02-16 10:00:49 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 88 , 2 , ' 婚假 ' , ' 3 ' , ' bpm_oa_leave_type ' , 0 , ' warning ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:36:38 ' , ' 1 ' , ' 2022-02-16 10:00:53 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 88 , 2 , ' 婚假 ' , ' 3 ' , ' bpm_oa_leave_type ' , 0 , ' warning ' , ' ' , NULL , ' 1 ' , ' 2021-09-21 22:36:38 ' , ' 1 ' , ' 2022-02-16 10:00:53 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 112 , 0 , ' 微信 Wap 网站支付 ' , ' wx_wap ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信 Wap 网站支付 ' , ' 1 ' , ' 2023-07-19 20:08:06 ' , ' 1 ' , ' 2023-07-19 20:09:08 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 113 , 1 , ' 微信公众号支付 ' , ' wx_pub ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信公众号支付 ' , ' 1 ' , ' 2021-12-03 10:40:24 ' , ' 1 ' , ' 2023-07-19 20:08:47 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 113 , 1 , ' 微信公众号支付 ' , ' wx_pub ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信公众号支付 ' , ' 1 ' , ' 2021-12-03 10:40:24 ' , ' 1 ' , ' 2023-07-19 20:08:47 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 114 , 2 , ' 微信小程序支付 ' , ' wx_lite ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信小程序支付 ' , ' 1 ' , ' 2021-12-03 10:41:06 ' , ' 1 ' , ' 2023-07-19 20:08:50 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 114 , 2 , ' 微信小程序支付 ' , ' wx_lite ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信小程序支付 ' , ' 1 ' , ' 2021-12-03 10:41:06 ' , ' 1 ' , ' 2023-07-19 20:08:50 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 115 , 3 , ' 微信 App 支付 ' , ' wx_app ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信 App 支付 ' , ' 1 ' , ' 2021-12-03 10:41:20 ' , ' 1 ' , ' 2023-07-19 20:08:56 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 115 , 3 , ' 微信 App 支付 ' , ' wx_app ' , ' pay_channel_code ' , 0 , ' success ' , ' ' , ' 微信 App 支付 ' , ' 1 ' , ' 2021-12-03 10:41:20 ' , ' 1 ' , ' 2023-07-19 20:08:56 ' , b ' 0 ' ) ;
@ -659,7 +666,7 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1363 , 3 , ' 覆盖绑定 ' , ' 3 ' , ' brokerage_bind_mode ' , 0 , ' ' , ' ' , ' 如果用户已经有推广人,推广人会被变更 ' , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1363 , 3 , ' 覆盖绑定 ' , ' 3 ' , ' brokerage_bind_mode ' , 0 , ' ' , ' ' , ' 如果用户已经有推广人,推广人会被变更 ' , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1364 , 1 , ' 钱包 ' , ' 1 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1364 , 1 , ' 钱包 ' , ' 1 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1365 , 2 , ' 银行卡 ' , ' 2 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1365 , 2 , ' 银行卡 ' , ' 2 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1366 , 3 , ' 微信 ' , ' 3 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ', ' 202 3-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1366 , 3 , ' 微信 ' , ' 3 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , ' 手动打款 ' , ' ' , ' 2023-09-28 02:46:05 ' , ' 1 ', ' 202 4-10-13 11:06:54 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1367 , 4 , ' 支付宝 ' , ' 4 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1367 , 4 , ' 支付宝 ' , ' 4 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1368 , 1 , ' 订单返佣 ' , ' 1 ' , ' brokerage_record_biz_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1368 , 1 , ' 订单返佣 ' , ' 1 ' , ' brokerage_record_biz_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1369 , 2 , ' 申请提现 ' , ' 2 ' , ' brokerage_record_biz_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1369 , 2 , ' 申请提现 ' , ' 2 ' , ' brokerage_record_biz_type ' , 0 , ' ' , ' ' , NULL , ' ' , ' 2023-09-28 02:46:05 ' , ' ' , ' 2023-09-28 02:46:05 ' , b ' 0 ' ) ;
@ -682,9 +689,9 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1386 , 1 , ' 砍价中 ' , ' 1 ' , ' promotion_bargain_record_status ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:26 ' , ' 1 ' , ' 2023-10-05 10:41:26 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1386 , 1 , ' 砍价中 ' , ' 1 ' , ' promotion_bargain_record_status ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:26 ' , ' 1 ' , ' 2023-10-05 10:41:26 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1387 , 2 , ' 砍价成功 ' , ' 2 ' , ' promotion_bargain_record_status ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:39 ' , ' 1 ' , ' 2023-10-05 10:41:39 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1387 , 2 , ' 砍价成功 ' , ' 2 ' , ' promotion_bargain_record_status ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:39 ' , ' 1 ' , ' 2023-10-05 10:41:39 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1388 , 3 , ' 砍价失败 ' , ' 3 ' , ' promotion_bargain_record_status ' , 0 , ' warning ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:57 ' , ' 1 ' , ' 2023-10-05 10:41:57 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1388 , 3 , ' 砍价失败 ' , ' 3 ' , ' promotion_bargain_record_status ' , 0 , ' warning ' , ' ' , ' ' , ' 1 ' , ' 2023-10-05 10:41:57 ' , ' 1 ' , ' 2023-10-05 10:41:57 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1389 , 1 , ' 拼团中 ' , ' 1 ' , ' promotion_combination_record_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:24:44 ' , ' 1 ' , ' 202 3-10-08 07:24:44 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1389 , 0 , ' 拼团中 ' , ' 0 ' , ' promotion_combination_record_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:24:44 ' , ' 1 ' , ' 202 4-10-13 10:08:17 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1390 , 2 , ' 拼团成功 ' , ' 2 ' , ' promotion_combination_record_status ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:24:56 ' , ' 1 ' , ' 202 3-10-08 07:24:56 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1390 , 1 , ' 拼团成功 ' , ' 1 ' , ' promotion_combination_record_status ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:24:56 ' , ' 1 ' , ' 202 4-10-13 10:08:20 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1391 , 3 , ' 拼团失败 ' , ' 3 ' , ' promotion_combination_record_status ' , 0 , ' warning ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:25:11 ' , ' 1 ' , ' 202 3-10-08 07:25:11 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1391 , 2 , ' 拼团失败 ' , ' 2 ' , ' promotion_combination_record_status ' , 0 , ' warning ' , ' ' , ' ' , ' 1 ' , ' 2023-10-08 07:25:11 ' , ' 1 ' , ' 202 4-10-13 10:08:24 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1392 , 2 , ' 管理员修改 ' , ' 2 ' , ' member_point_biz_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:41:34 ' , ' 1 ' , ' 2023-10-11 07:41:34 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1392 , 2 , ' 管理员修改 ' , ' 2 ' , ' member_point_biz_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:41:34 ' , ' 1 ' , ' 2023-10-11 07:41:34 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1393 , 13 , ' 订单积分抵扣(单个退款) ' , ' 13 ' , ' member_point_biz_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:42:29 ' , ' 1 ' , ' 2023-10-11 07:42:29 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1393 , 13 , ' 订单积分抵扣(单个退款) ' , ' 13 ' , ' member_point_biz_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:42:29 ' , ' 1 ' , ' 2023-10-11 07:42:29 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1394 , 21 , ' 订单积分奖励 ' , ' 21 ' , ' member_point_biz_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:42:44 ' , ' 1 ' , ' 2023-10-11 07:42:44 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1394 , 21 , ' 订单积分奖励 ' , ' 21 ' , ' member_point_biz_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2023-10-11 07:42:44 ' , ' 1 ' , ' 2023-10-11 07:42:44 ' , b ' 0 ' ) ;
@ -862,6 +869,32 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1590 , 20 , ' SIMPLE 设计器 ' , ' 20 ' , ' bpm_model_type ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2024-08-26 15:22:27 ' , ' 1 ' , ' 2024-08-26 16:45:58 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1590 , 20 , ' SIMPLE 设计器 ' , ' 20 ' , ' bpm_model_type ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2024-08-26 15:22:27 ' , ' 1 ' , ' 2024-08-26 16:45:58 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1591 , 4 , ' 七牛云 ' , ' QINIU ' , ' system_sms_channel_code ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-08-31 08:45:03 ' , ' 1 ' , ' 2024-08-31 08:45:24 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1591 , 4 , ' 七牛云 ' , ' QINIU ' , ' system_sms_channel_code ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-08-31 08:45:03 ' , ' 1 ' , ' 2024-08-31 08:45:24 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1592 , 3 , ' 新人券 ' , ' 3 ' , ' promotion_coupon_take_type ' , 0 , ' info ' , ' ' , ' 新人注册后,自动发放 ' , ' 1 ' , ' 2024-09-03 11:57:16 ' , ' 1 ' , ' 2024-09-03 11:57:28 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1592 , 3 , ' 新人券 ' , ' 3 ' , ' promotion_coupon_take_type ' , 0 , ' info ' , ' ' , ' 新人注册后,自动发放 ' , ' 1 ' , ' 2024-09-03 11:57:16 ' , ' 1 ' , ' 2024-09-03 11:57:28 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1593 , 5 , ' 微信零钱 ' , ' 5 ' , ' brokerage_withdraw_type ' , 0 , ' ' , ' ' , ' 自动打款 ' , ' 1 ' , ' 2024-10-13 11:06:48 ' , ' 1 ' , ' 2024-10-13 11:06:59 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1655 , 0 , ' 标准数据格式( JSON) ' , ' 0 ' , ' iot_data_format ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 11:53:26 ' , ' 1 ' , ' 2024-09-06 14:31:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1656 , 1 , ' 透传/自定义 ' , ' 1 ' , ' iot_data_format ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 11:53:37 ' , ' 1 ' , ' 2024-09-06 14:30:54 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1657 , 0 , ' 直连设备 ' , ' 0 ' , ' iot_product_device_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 11:54:58 ' , ' 1 ' , ' 2024-09-06 21:57:01 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1658 , 2 , ' 网关设备 ' , ' 2 ' , ' iot_product_device_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 11:55:08 ' , ' 1 ' , ' 2024-09-06 21:56:46 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1659 , 1 , ' 网关子设备 ' , ' 1 ' , ' iot_product_device_type ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 11:55:20 ' , ' 1 ' , ' 2024-09-06 21:57:10 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1661 , 1 , ' 已发布 ' , ' 1 ' , ' iot_product_status ' , 0 , ' success ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 12:10:33 ' , ' 1 ' , ' 2024-09-06 22:06:22 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1663 , 0 , ' 开发中 ' , ' 0 ' , ' iot_product_status ' , 0 , ' default ' , ' ' , ' ' , ' 1 ' , ' 2024-08-10 14:19:18 ' , ' 1 ' , ' 2024-09-07 10:58:07 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1665 , 0 , ' 弱校验 ' , ' 0 ' , ' iot_validate_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 20:05:48 ' , ' 1 ' , ' 2024-09-06 22:02:44 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1666 , 1 , ' 免校验 ' , ' 1 ' , ' iot_validate_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 20:06:03 ' , ' 1 ' , ' 2024-09-06 22:02:51 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1667 , 0 , ' Wi-Fi ' , ' 0 ' , ' iot_net_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:04:47 ' , ' 1 ' , ' 2024-09-06 22:04:47 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1668 , 1 , ' 蜂窝( 2G / 3G / 4G / 5G) ' , ' 1 ' , ' iot_net_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:05:14 ' , ' 1 ' , ' 2024-09-06 22:05:14 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1669 , 2 , ' 以太网 ' , ' 2 ' , ' iot_net_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:05:35 ' , ' 1 ' , ' 2024-09-06 22:05:35 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1670 , 3 , ' 其他 ' , ' 3 ' , ' iot_net_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:05:52 ' , ' 1 ' , ' 2024-09-06 22:05:52 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1671 , 0 , ' 自定义 ' , ' 0 ' , ' iot_protocol_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:26:10 ' , ' 1 ' , ' 2024-09-06 22:26:10 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1672 , 1 , ' Modbus ' , ' 1 ' , ' iot_protocol_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:26:21 ' , ' 1 ' , ' 2024-09-06 22:26:21 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1673 , 2 , ' OPC UA ' , ' 2 ' , ' iot_protocol_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:26:31 ' , ' 1 ' , ' 2024-09-06 22:26:31 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1674 , 3 , ' ZigBee ' , ' 3 ' , ' iot_protocol_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:26:39 ' , ' 1 ' , ' 2024-09-06 22:26:39 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1675 , 4 , ' BLE ' , ' 4 ' , ' iot_protocol_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-06 22:26:48 ' , ' 1 ' , ' 2024-09-06 22:26:48 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1676 , 0 , ' 未激活 ' , ' 0 ' , ' iot_device_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-21 08:13:34 ' , ' 1 ' , ' 2024-09-21 08:13:34 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1677 , 1 , ' 在线 ' , ' 1 ' , ' iot_device_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-21 08:13:48 ' , ' 1 ' , ' 2024-09-21 08:13:48 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1678 , 2 , ' 离线 ' , ' 2 ' , ' iot_device_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-21 08:13:59 ' , ' 1 ' , ' 2024-09-21 08:13:59 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1679 , 3 , ' 已禁用 ' , ' 3 ' , ' iot_device_status ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-21 08:14:13 ' , ' 1 ' , ' 2024-09-21 08:14:13 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1680 , 1 , ' 属性 ' , ' 1 ' , ' iot_product_function_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-29 20:03:01 ' , ' 1 ' , ' 2024-09-29 20:09:41 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1681 , 2 , ' 服务 ' , ' 2 ' , ' iot_product_function_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-29 20:03:11 ' , ' 1 ' , ' 2024-09-29 20:08:23 ' , b ' 0 ' ) ;
INSERT INTO ` system_dict_data ` ( ` id ` , ` sort ` , ` label ` , ` value ` , ` dict_type ` , ` status ` , ` color_type ` , ` css_class ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 1682 , 3 , ' 事件 ' , ' 3 ' , ' iot_product_function_type ' , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 2024-09-29 20:03:20 ' , ' 1 ' , ' 2024-09-29 20:08:20 ' , b ' 0 ' ) ;
COMMIT ;
COMMIT ;
-- ----------------------------
-- ----------------------------
@ -881,7 +914,7 @@ CREATE TABLE `system_dict_type` (
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted_time ` datetime NULL DEFAULT NULL COMMENT ' 删除时间 ' ,
` deleted_time ` datetime NULL DEFAULT NULL COMMENT ' 删除时间 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 3 0 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典类型表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 6 4 0 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典类型表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_dict_type
-- Records of system_dict_type
@ -980,6 +1013,14 @@ INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creat
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 627 , ' 写作格式 ' , ' ai_write_format ' , 0 , ' ' , ' 1 ' , ' 2024-07-07 15:14:34 ' , ' 1 ' , ' 2024-07-07 15:14:34 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 627 , ' 写作格式 ' , ' ai_write_format ' , 0 , ' ' , ' 1 ' , ' 2024-07-07 15:14:34 ' , ' 1 ' , ' 2024-07-07 15:14:34 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 628 , ' AI 写作类型 ' , ' ai_write_type ' , 0 , ' ' , ' 1 ' , ' 2024-07-10 21:25:29 ' , ' 1 ' , ' 2024-07-10 21:25:29 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 628 , ' AI 写作类型 ' , ' ai_write_type ' , 0 , ' ' , ' 1 ' , ' 2024-07-10 21:25:29 ' , ' 1 ' , ' 2024-07-10 21:25:29 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 629 , ' BPM 流程模型类型 ' , ' bpm_model_type ' , 0 , ' ' , ' 1 ' , ' 2024-08-26 15:21:43 ' , ' 1 ' , ' 2024-08-26 15:21:43 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 629 , ' BPM 流程模型类型 ' , ' bpm_model_type ' , 0 , ' ' , ' 1 ' , ' 2024-08-26 15:21:43 ' , ' 1 ' , ' 2024-08-26 15:21:43 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 630 , ' IOT 接入网关协议 ' , ' iot_protocol_type ' , 0 , ' ' , ' 1 ' , ' 2024-09-06 22:20:17 ' , ' 1 ' , ' 2024-09-06 22:20:17 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 631 , ' IOT 设备状态 ' , ' iot_device_status ' , 0 , ' ' , ' 1 ' , ' 2024-09-21 08:12:55 ' , ' 1 ' , ' 2024-09-21 08:12:55 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 632 , ' IOT 物模型功能类型 ' , ' iot_product_function_type ' , 0 , ' ' , ' 1 ' , ' 2024-09-29 20:02:36 ' , ' 1 ' , ' 2024-09-29 20:09:26 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 634 , ' IOT 数据格式 ' , ' iot_data_format ' , 0 , ' ' , ' 1 ' , ' 2024-08-10 11:52:58 ' , ' 1 ' , ' 2024-09-06 14:30:14 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 635 , ' IOT 产品设备类型 ' , ' iot_product_device_type ' , 0 , ' ' , ' 1 ' , ' 2024-08-10 11:54:30 ' , ' 1 ' , ' 2024-08-10 04:06:56 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 637 , ' IOT 产品状态 ' , ' iot_product_status ' , 0 , ' ' , ' 1 ' , ' 2024-08-10 12:06:09 ' , ' 1 ' , ' 2024-08-10 12:06:09 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 638 , ' IOT 数据校验级别 ' , ' iot_validate_type ' , 0 , ' ' , ' 1 ' , ' 2024-09-06 20:05:13 ' , ' 1 ' , ' 2024-09-06 20:05:13 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
INSERT INTO ` system_dict_type ` ( ` id ` , ` name ` , ` type ` , ` status ` , ` remark ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` deleted_time ` ) VALUES ( 639 , ' IOT 联网方式 ' , ' iot_net_type ' , 0 , ' ' , ' 1 ' , ' 2024-09-06 22:04:13 ' , ' 1 ' , ' 2024-09-06 22:04:13 ' , b ' 0 ' , ' 1970-01-01 00:00:00 ' ) ;
COMMIT ;
COMMIT ;
-- ----------------------------
-- ----------------------------
@ -1003,7 +1044,7 @@ CREATE TABLE `system_login_log` (
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 33 35 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 系统访问记录 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 33 70 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 系统访问记录 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_login_log
-- Records of system_login_log
@ -1134,7 +1175,7 @@ CREATE TABLE `system_menu` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 814 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 菜单权限表 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 2 912 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 菜单权限表 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_menu
-- Records of system_menu
@ -1983,6 +2024,26 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2811 , ' 积分商城活动更新 ' , ' promotion:point-activity:update ' , 3 , 3 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:10 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2811 , ' 积分商城活动更新 ' , ' promotion:point-activity:update ' , 3 , 3 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:10 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2812 , ' 积分商城活动删除 ' , ' promotion:point-activity:delete ' , 3 , 4 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:12 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2812 , ' 积分商城活动删除 ' , ' promotion:point-activity:delete ' , 3 , 4 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:12 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2813 , ' 积分商城活动导出 ' , ' promotion:point-activity:export ' , 3 , 5 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:27 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2813 , ' 积分商城活动导出 ' , ' promotion:point-activity:export ' , 3 , 5 , 2808 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-21 05:36:42 ' , ' 1 ' , ' 2024-09-22 14:49:27 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2892 , ' IOT 物联网 ' , ' ' , 1 , 500 , 0 , ' /iot ' , ' fa-solid:hdd ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' 1 ' , ' 2024-08-10 09:55:29 ' , ' 1 ' , ' 2024-08-10 09:55:29 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2893 , ' 设备接入 ' , ' ' , 1 , 1 , 2892 , ' device ' , ' ep:platform ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' 1 ' , ' 2024-08-10 09:57:56 ' , ' 1 ' , ' 2024-10-20 18:57:43 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2894 , ' 产品管理 ' , ' ' , 2 , 0 , 2893 , ' product ' , ' ' , ' iot/product/index ' , ' IoTProduct ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' 1 ' , ' 2024-09-16 19:50:42 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2895 , ' 产品查询 ' , ' iot:product:query ' , 3 , 1 , 2894 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' ' , ' 2024-08-10 02:38:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2896 , ' 产品创建 ' , ' iot:product:create ' , 3 , 2 , 2894 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' ' , ' 2024-08-10 02:38:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2897 , ' 产品更新 ' , ' iot:product:update ' , 3 , 3 , 2894 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' ' , ' 2024-08-10 02:38:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2898 , ' 产品删除 ' , ' iot:product:delete ' , 3 , 4 , 2894 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' ' , ' 2024-08-10 02:38:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2899 , ' 产品导出 ' , ' iot:product:export ' , 3 , 5 , 2894 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-08-10 02:38:02 ' , ' ' , ' 2024-08-10 02:38:02 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2900 , ' 设备管理 ' , ' ' , 2 , 0 , 2893 , ' device ' , ' ' , ' iot/device/index ' , ' IoTDevice ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:50:53 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2901 , ' 设备查询 ' , ' iot:device:query ' , 3 , 1 , 2900 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:37:00 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2902 , ' 设备创建 ' , ' iot:device:create ' , 3 , 2 , 2900 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:37:09 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2903 , ' 设备更新 ' , ' iot:device:update ' , 3 , 3 , 2900 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:37:18 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2904 , ' 设备删除 ' , ' iot:device:delete ' , 3 , 4 , 2900 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:37:42 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2905 , ' 设备导出 ' , ' iot:device:export ' , 3 , 5 , 2900 , ' ' , ' ' , ' ' , ' ' , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-16 18:48:19 ' , ' 1 ' , ' 2024-09-16 19:37:49 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2906 , ' IoT 产品物模型管理 ' , ' ' , 1 , 0 , 2893 , ' think-model-function ' , ' ' , ' ' , ' ' , 0 , b ' 0 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' 1 ' , ' 2024-09-29 20:52:12 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2907 , ' IoT 产品物模型查询 ' , ' iot:think-model-function:query ' , 3 , 1 , 2906 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' ' , ' 2024-09-25 22:12:09 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2908 , ' IoT 产品物模型创建 ' , ' iot:think-model-function:create ' , 3 , 2 , 2906 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' ' , ' 2024-09-25 22:12:09 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2909 , ' IoT 产品物模型更新 ' , ' iot:think-model-function:update ' , 3 , 3 , 2906 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' ' , ' 2024-09-25 22:12:09 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2910 , ' IoT 产品物模型删除 ' , ' iot:think-model-function:delete ' , 3 , 4 , 2906 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' ' , ' 2024-09-25 22:12:09 ' , b ' 0 ' ) ;
INSERT INTO ` system_menu ` ( ` id ` , ` name ` , ` permission ` , ` type ` , ` sort ` , ` parent_id ` , ` path ` , ` icon ` , ` component ` , ` component_name ` , ` status ` , ` visible ` , ` keep_alive ` , ` always_show ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` ) VALUES ( 2911 , ' IoT 产品物模型导出 ' , ' iot:think-model-function:export ' , 3 , 5 , 2906 , ' ' , ' ' , ' ' , NULL , 0 , b ' 1 ' , b ' 1 ' , b ' 1 ' , ' ' , ' 2024-09-25 22:12:09 ' , ' ' , ' 2024-09-25 22:12:09 ' , b ' 0 ' ) ;
COMMIT ;
COMMIT ;
-- ----------------------------
-- ----------------------------
@ -2104,7 +2165,7 @@ CREATE TABLE `system_oauth2_access_token` (
PRIMARY KEY ( ` id ` ) USING BTREE ,
PRIMARY KEY ( ` id ` ) USING BTREE ,
INDEX ` idx_access_token ` ( ` access_token ` ASC ) USING BTREE ,
INDEX ` idx_access_token ` ( ` access_token ` ASC ) USING BTREE ,
INDEX ` idx_refresh_token ` ( ` refresh_token ` ASC ) USING BTREE
INDEX ` idx_refresh_token ` ( ` refresh_token ` ASC ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 01 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' OAuth2 访问令牌 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 1 1308 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' OAuth2 访问令牌 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_oauth2_access_token
-- Records of system_oauth2_access_token
@ -2226,7 +2287,7 @@ CREATE TABLE `system_oauth2_refresh_token` (
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 16 52 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' OAuth2 刷新令牌 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 16 76 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' OAuth2 刷新令牌 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_oauth2_refresh_token
-- Records of system_oauth2_refresh_token
@ -2259,7 +2320,7 @@ CREATE TABLE `system_operate_log` (
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 906 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 操作日志记录 V2 版本 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 906 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 操作日志记录 V2 版本 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_operate_log
-- Records of system_operate_log
@ -3242,7 +3303,7 @@ CREATE TABLE `system_sms_code` (
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
` tenant_id ` bigint NOT NULL DEFAULT 0 COMMENT ' 租户编号 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE ,
PRIMARY KEY ( ` id ` ) USING BTREE ,
INDEX ` idx_mobile ` ( ` mobile ` ASC ) USING BTREE COMMENT ' 手机号 '
INDEX ` idx_mobile ` ( ` mobile ` ASC ) USING BTREE COMMENT ' 手机号 '
) ENGINE = InnoDB AUTO_INCREMENT = 6 39 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 手机验证码 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 6 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 手机验证码 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_sms_code
-- Records of system_sms_code
@ -3283,7 +3344,7 @@ CREATE TABLE `system_sms_log` (
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` update_time ` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
` deleted ` bit ( 1 ) NOT NULL DEFAULT b ' 0 ' COMMENT ' 是否删除 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE
PRIMARY KEY ( ` id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 147 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 短信日志 ' ;
) ENGINE = InnoDB AUTO_INCREMENT = 1 234 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 短信日志 ' ;
-- ----------------------------
-- ----------------------------
-- Records of system_sms_log
-- Records of system_sms_log
@ -3581,8 +3642,8 @@ CREATE TABLE `system_users` (
-- Records of system_users
-- Records of system_users
-- ----------------------------
-- ----------------------------
BEGIN ;
BEGIN ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 1 , ' admin ' , ' $2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm ' , ' 芋道源码 ' , ' 管理员 ' , 103 , ' [1,2] ' , ' aoteman@126.com ' , ' 18818260277 ' , 2 , ' http://test.yudao.iocoder.cn/bf2002b38950c904243be7c825d3f82e29f25a44526583c3fde2ebdff3a87f75.png ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-1 0-07 15:05:1 7' , ' admin ' , ' 2021-01-05 17:03:47 ' , NULL , ' 2024-1 0-07 15:05:1 7' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 1 , ' admin ' , ' $2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm ' , ' 芋道源码 ' , ' 管理员 ' , 103 , ' [1,2] ' , ' aoteman@126.com ' , ' 18818260277 ' , 2 , ' http://test.yudao.iocoder.cn/bf2002b38950c904243be7c825d3f82e29f25a44526583c3fde2ebdff3a87f75.png ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-1 1-08 19:27:0 7' , ' admin ' , ' 2021-01-05 17:03:47 ' , NULL , ' 2024-1 1-08 19:27:0 7' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 100 , ' yudao ' , ' $2a$ 10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8 a' , ' 芋道 ' , ' 不要吓我 ' , 104 , ' [1] ' , ' yudao@iocoder.cn ' , ' 15601691300 ' , 1 , ' ' , 0 , ' 127.0.0.1' , ' 2022-07-09 23:03:33 ' , ' ' , ' 2021-01-07 09:07:17 ' , ' 1 ' , ' 2024-09-22 14:55:0 6' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 100 , ' yudao ' , ' $2a$ 04$IgUse/ibRzAZ3rngCThmtemJeoh15Ux1TQ2hIMe4iwt/K3LcFHEd a' , ' 芋道 ' , ' 不要吓我 ' , 104 , ' [1] ' , ' yudao@iocoder.cn ' , ' 15601691300 ' , 1 , ' ' , 0 , ' 0:0:0:0:0:0:0:1' , ' 2024-11-02 14:00:46 ' , ' ' , ' 2021-01-07 09:07:17 ' , NULL , ' 2024-11-02 14:00:4 6' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 103 , ' yuanma ' , ' $2a$04$fUBSmjKCPYAUmnMzOb6qE.eZCGPhHi1JmAKclODbfS/O7fHOl2bH6 ' , ' 源码 ' , NULL , 106 , NULL , ' yuanma@iocoder.cn ' , ' 15601701300 ' , 0 , ' ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-08-11 17:48:12 ' , ' ' , ' 2021-01-13 23:50:35 ' , NULL , ' 2024-08-11 17:48:12 ' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 103 , ' yuanma ' , ' $2a$04$fUBSmjKCPYAUmnMzOb6qE.eZCGPhHi1JmAKclODbfS/O7fHOl2bH6 ' , ' 源码 ' , NULL , 106 , NULL , ' yuanma@iocoder.cn ' , ' 15601701300 ' , 0 , ' ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-08-11 17:48:12 ' , ' ' , ' 2021-01-13 23:50:35 ' , NULL , ' 2024-08-11 17:48:12 ' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 104 , ' test ' , ' $2a$04$jDFLttgfik0QqJKAbfhMa.2A9xXoZmAIxakdFJUzkX.MgBKT6ddo6 ' , ' 测试号 ' , NULL , 107 , ' [1,2] ' , ' 111@qq.com ' , ' 15601691200 ' , 1 , ' ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-09-17 15:05:43 ' , ' ' , ' 2021-01-21 02:13:53 ' , NULL , ' 2024-09-17 15:05:43 ' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 104 , ' test ' , ' $2a$04$jDFLttgfik0QqJKAbfhMa.2A9xXoZmAIxakdFJUzkX.MgBKT6ddo6 ' , ' 测试号 ' , NULL , 107 , ' [1,2] ' , ' 111@qq.com ' , ' 15601691200 ' , 1 , ' ' , 0 , ' 0:0:0:0:0:0:0:1 ' , ' 2024-09-17 15:05:43 ' , ' ' , ' 2021-01-21 02:13:53 ' , NULL , ' 2024-09-17 15:05:43 ' , b ' 0 ' , 1 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 107 , ' admin107 ' , ' $2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm ' , ' 芋艿 ' , NULL , NULL , NULL , ' ' , ' 15601691300 ' , 0 , ' ' , 0 , ' ' , NULL , ' 1 ' , ' 2022-02-20 22:59:33 ' , ' 1 ' , ' 2022-02-27 08:26:51 ' , b ' 0 ' , 118 ) ;
INSERT INTO ` system_users ` ( ` id ` , ` username ` , ` password ` , ` nickname ` , ` remark ` , ` dept_id ` , ` post_ids ` , ` email ` , ` mobile ` , ` sex ` , ` avatar ` , ` status ` , ` login_ip ` , ` login_date ` , ` creator ` , ` create_time ` , ` updater ` , ` update_time ` , ` deleted ` , ` tenant_id ` ) VALUES ( 107 , ' admin107 ' , ' $2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm ' , ' 芋艿 ' , NULL , NULL , NULL , ' ' , ' 15601691300 ' , 0 , ' ' , 0 , ' ' , NULL , ' 1 ' , ' 2022-02-20 22:59:33 ' , ' 1 ' , ' 2022-02-27 08:26:51 ' , b ' 0 ' , 118 ) ;