From a67dfc3fa2fb0ba1447d7bbfa96732ea1b53f1de Mon Sep 17 00:00:00 2001 From: 朱桂飞 <zhuguifei@zhuguifeideMacBook-Air.local> Date: 星期六, 08 二月 2025 11:25:59 +0800 Subject: [PATCH] 添加sql备份 --- eims/script/sql/eims.sql | 3046 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 3,046 insertions(+), 0 deletions(-) diff --git a/eims/script/sql/eims.sql b/eims/script/sql/eims.sql new file mode 100644 index 0000000..9b3417d --- /dev/null +++ b/eims/script/sql/eims.sql @@ -0,0 +1,3046 @@ +/* + Navicat Premium Dump SQL + + Source Server : local + Source Server Type : MySQL + Source Server Version : 90001 (9.0.1) + Source Host : localhost:3306 + Source Schema : eims + + Target Server Type : MySQL + Target Server Version : 90001 (9.0.1) + File Encoding : 65001 + + Date: 08/02/2025 11:25:28 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for ACT_EVT_LOG +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_EVT_LOG`; +CREATE TABLE `ACT_EVT_LOG` ( + `LOG_NR_` bigint NOT NULL AUTO_INCREMENT, + `TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TIME_STAMP_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DATA_` longblob, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL, + `IS_PROCESSED_` tinyint DEFAULT '0', + PRIMARY KEY (`LOG_NR_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_EVT_LOG +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_GE_BYTEARRAY +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_GE_BYTEARRAY`; +CREATE TABLE `ACT_GE_BYTEARRAY` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `BYTES_` longblob, + `GENERATED_` tinyint DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_FK_BYTEARR_DEPL` (`DEPLOYMENT_ID_`), + CONSTRAINT `ACT_FK_BYTEARR_DEPL` FOREIGN KEY (`DEPLOYMENT_ID_`) REFERENCES `ACT_RE_DEPLOYMENT` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_GE_BYTEARRAY +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_GE_PROPERTY +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_GE_PROPERTY`; +CREATE TABLE `ACT_GE_PROPERTY` ( + `NAME_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `VALUE_` varchar(300) COLLATE utf8mb3_bin DEFAULT NULL, + `REV_` int DEFAULT NULL, + PRIMARY KEY (`NAME_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_GE_PROPERTY +-- ---------------------------- +BEGIN; +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('batch.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.execution-related-entities-count', 'true', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.task-related-entities-count', 'true', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('common.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('entitylink.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('eventsubscription.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('identitylink.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('job.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('next.dbid', '1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.history', 'create(7.0.1.1)', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('task.schema.version', '7.0.1.1', 1); +INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('variable.schema.version', '7.0.1.1', 1); +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_ACTINST +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_ACTINST`; +CREATE TABLE `ACT_HI_ACTINST` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT '1', + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `ACT_ID_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CALL_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_TIME_` datetime(3) NOT NULL, + `END_TIME_` datetime(3) DEFAULT NULL, + `TRANSACTION_ORDER_` int DEFAULT NULL, + `DURATION_` bigint DEFAULT NULL, + `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_ACT_INST_START` (`START_TIME_`), + KEY `ACT_IDX_HI_ACT_INST_END` (`END_TIME_`), + KEY `ACT_IDX_HI_ACT_INST_PROCINST` (`PROC_INST_ID_`,`ACT_ID_`), + KEY `ACT_IDX_HI_ACT_INST_EXEC` (`EXECUTION_ID_`,`ACT_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_ACTINST +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_ATTACHMENT +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_ATTACHMENT`; +CREATE TABLE `ACT_HI_ATTACHMENT` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `URL_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CONTENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TIME_` datetime(3) DEFAULT NULL, + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_ATTACHMENT +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_COMMENT +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_COMMENT`; +CREATE TABLE `ACT_HI_COMMENT` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TIME_` datetime(3) NOT NULL, + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACTION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `MESSAGE_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `FULL_MSG_` longblob, + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_COMMENT +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_DETAIL +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_DETAIL`; +CREATE TABLE `ACT_HI_DETAIL` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `VAR_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REV_` int DEFAULT NULL, + `TIME_` datetime(3) NOT NULL, + `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DOUBLE_` double DEFAULT NULL, + `LONG_` bigint DEFAULT NULL, + `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_DETAIL_PROC_INST` (`PROC_INST_ID_`), + KEY `ACT_IDX_HI_DETAIL_ACT_INST` (`ACT_INST_ID_`), + KEY `ACT_IDX_HI_DETAIL_TIME` (`TIME_`), + KEY `ACT_IDX_HI_DETAIL_NAME` (`NAME_`), + KEY `ACT_IDX_HI_DETAIL_TASK_ID` (`TASK_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_DETAIL +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_ENTITYLINK +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_ENTITYLINK`; +CREATE TABLE `ACT_HI_ENTITYLINK` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `LINK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` datetime(3) DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ROOT_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ROOT_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HIERARCHY_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_ENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_HI_ENT_LNK_REF_SCOPE` (`REF_SCOPE_ID_`,`REF_SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_HI_ENT_LNK_ROOT_SCOPE` (`ROOT_SCOPE_ID_`,`ROOT_SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_HI_ENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_ENTITYLINK +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_IDENTITYLINK +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_IDENTITYLINK`; +CREATE TABLE `ACT_HI_IDENTITYLINK` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `GROUP_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` datetime(3) DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_IDENT_LNK_USER` (`USER_ID_`), + KEY `ACT_IDX_HI_IDENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_IDENT_LNK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_IDENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_IDENT_LNK_TASK` (`TASK_ID_`), + KEY `ACT_IDX_HI_IDENT_LNK_PROCINST` (`PROC_INST_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_IDENTITYLINK +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_PROCINST +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_PROCINST`; +CREATE TABLE `ACT_HI_PROCINST` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT '1', + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `BUSINESS_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `START_TIME_` datetime(3) NOT NULL, + `END_TIME_` datetime(3) DEFAULT NULL, + `DURATION_` bigint DEFAULT NULL, + `START_USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `END_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUPER_PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CALLBACK_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CALLBACK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REFERENCE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REFERENCE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `BUSINESS_STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + UNIQUE KEY `PROC_INST_ID_` (`PROC_INST_ID_`), + KEY `ACT_IDX_HI_PRO_INST_END` (`END_TIME_`), + KEY `ACT_IDX_HI_PRO_I_BUSKEY` (`BUSINESS_KEY_`), + KEY `ACT_IDX_HI_PRO_SUPER_PROCINST` (`SUPER_PROCESS_INSTANCE_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_PROCINST +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_TASKINST +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_TASKINST`; +CREATE TABLE `ACT_HI_TASKINST` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT '1', + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_DEF_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `STATE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_TIME_` datetime(3) NOT NULL, + `IN_PROGRESS_TIME_` datetime(3) DEFAULT NULL, + `IN_PROGRESS_STARTED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CLAIM_TIME_` datetime(3) DEFAULT NULL, + `CLAIMED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUSPENDED_TIME_` datetime(3) DEFAULT NULL, + `SUSPENDED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `END_TIME_` datetime(3) DEFAULT NULL, + `COMPLETED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DURATION_` bigint DEFAULT NULL, + `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `PRIORITY_` int DEFAULT NULL, + `IN_PROGRESS_DUE_DATE_` datetime(3) DEFAULT NULL, + `DUE_DATE_` datetime(3) DEFAULT NULL, + `FORM_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `LAST_UPDATED_TIME_` datetime(3) DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_TASK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_TASK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_TASK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_TASK_INST_PROCINST` (`PROC_INST_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_TASKINST +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_TSK_LOG +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_TSK_LOG`; +CREATE TABLE `ACT_HI_TSK_LOG` ( + `ID_` bigint NOT NULL AUTO_INCREMENT, + `TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `TIME_STAMP_` timestamp(3) NOT NULL, + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DATA_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_TSK_LOG +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_HI_VARINST +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_HI_VARINST`; +CREATE TABLE `ACT_HI_VARINST` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT '1', + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `VAR_TYPE_` varchar(100) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DOUBLE_` double DEFAULT NULL, + `LONG_` bigint DEFAULT NULL, + `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` datetime(3) DEFAULT NULL, + `LAST_UPDATED_TIME_` datetime(3) DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_HI_PROCVAR_NAME_TYPE` (`NAME_`,`VAR_TYPE_`), + KEY `ACT_IDX_HI_VAR_SCOPE_ID_TYPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_VAR_SUB_ID_TYPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_HI_PROCVAR_PROC_INST` (`PROC_INST_ID_`), + KEY `ACT_IDX_HI_PROCVAR_TASK_ID` (`TASK_ID_`), + KEY `ACT_IDX_HI_PROCVAR_EXE` (`EXECUTION_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_HI_VARINST +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_PROCDEF_INFO +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_PROCDEF_INFO`; +CREATE TABLE `ACT_PROCDEF_INFO` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `INFO_JSON_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + UNIQUE KEY `ACT_UNIQ_INFO_PROCDEF` (`PROC_DEF_ID_`), + KEY `ACT_IDX_INFO_PROCDEF` (`PROC_DEF_ID_`), + KEY `ACT_FK_INFO_JSON_BA` (`INFO_JSON_ID_`), + CONSTRAINT `ACT_FK_INFO_JSON_BA` FOREIGN KEY (`INFO_JSON_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_INFO_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_PROCDEF_INFO +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RE_DEPLOYMENT +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RE_DEPLOYMENT`; +CREATE TABLE `ACT_RE_DEPLOYMENT` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `DEPLOY_TIME_` timestamp(3) NULL DEFAULT NULL, + `DERIVED_FROM_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DERIVED_FROM_ROOT_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ENGINE_VERSION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RE_DEPLOYMENT +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RE_MODEL +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RE_MODEL`; +CREATE TABLE `ACT_RE_MODEL` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `LAST_UPDATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `VERSION_` int DEFAULT NULL, + `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EDITOR_SOURCE_VALUE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EDITOR_SOURCE_EXTRA_VALUE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_FK_MODEL_SOURCE` (`EDITOR_SOURCE_VALUE_ID_`), + KEY `ACT_FK_MODEL_SOURCE_EXTRA` (`EDITOR_SOURCE_EXTRA_VALUE_ID_`), + KEY `ACT_FK_MODEL_DEPLOYMENT` (`DEPLOYMENT_ID_`), + CONSTRAINT `ACT_FK_MODEL_DEPLOYMENT` FOREIGN KEY (`DEPLOYMENT_ID_`) REFERENCES `ACT_RE_DEPLOYMENT` (`ID_`), + CONSTRAINT `ACT_FK_MODEL_SOURCE` FOREIGN KEY (`EDITOR_SOURCE_VALUE_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_MODEL_SOURCE_EXTRA` FOREIGN KEY (`EDITOR_SOURCE_EXTRA_VALUE_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RE_MODEL +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RE_PROCDEF +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RE_PROCDEF`; +CREATE TABLE `ACT_RE_PROCDEF` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `KEY_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `VERSION_` int NOT NULL, + `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `RESOURCE_NAME_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DGRM_RESOURCE_NAME_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `HAS_START_FORM_KEY_` tinyint DEFAULT NULL, + `HAS_GRAPHICAL_NOTATION_` tinyint DEFAULT NULL, + `SUSPENSION_STATE_` int DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `ENGINE_VERSION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DERIVED_FROM_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DERIVED_FROM_ROOT_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DERIVED_VERSION_` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID_`), + UNIQUE KEY `ACT_UNIQ_PROCDEF` (`KEY_`,`VERSION_`,`DERIVED_VERSION_`,`TENANT_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RE_PROCDEF +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_ACTINST +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_ACTINST`; +CREATE TABLE `ACT_RU_ACTINST` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT '1', + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `ACT_ID_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CALL_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_TIME_` datetime(3) NOT NULL, + `END_TIME_` datetime(3) DEFAULT NULL, + `DURATION_` bigint DEFAULT NULL, + `TRANSACTION_ORDER_` int DEFAULT NULL, + `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_RU_ACTI_START` (`START_TIME_`), + KEY `ACT_IDX_RU_ACTI_END` (`END_TIME_`), + KEY `ACT_IDX_RU_ACTI_PROC` (`PROC_INST_ID_`), + KEY `ACT_IDX_RU_ACTI_PROC_ACT` (`PROC_INST_ID_`,`ACT_ID_`), + KEY `ACT_IDX_RU_ACTI_EXEC` (`EXECUTION_ID_`), + KEY `ACT_IDX_RU_ACTI_EXEC_ACT` (`EXECUTION_ID_`,`ACT_ID_`), + KEY `ACT_IDX_RU_ACTI_TASK` (`TASK_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_ACTINST +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_DEADLETTER_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_DEADLETTER_JOB`; +CREATE TABLE `ACT_RU_DEADLETTER_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `EXCLUSIVE_` tinyint(1) DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DUEDATE_` timestamp(3) NULL DEFAULT NULL, + `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_DEADLETTER_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`), + KEY `ACT_IDX_DEADLETTER_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`), + KEY `ACT_IDX_DEADLETTER_JOB_CORRELATION_ID` (`CORRELATION_ID_`), + KEY `ACT_IDX_DJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_DJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_DJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_DEADLETTER_JOB_EXECUTION` (`EXECUTION_ID_`), + KEY `ACT_FK_DEADLETTER_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`), + KEY `ACT_FK_DEADLETTER_JOB_PROC_DEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_DEADLETTER_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_DEADLETTER_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_DEADLETTER_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_DEADLETTER_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_DEADLETTER_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_DEADLETTER_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_ENTITYLINK +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_ENTITYLINK`; +CREATE TABLE `ACT_RU_ENTITYLINK` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CREATE_TIME_` datetime(3) DEFAULT NULL, + `LINK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REF_SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ROOT_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ROOT_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HIERARCHY_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_ENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_ENT_LNK_REF_SCOPE` (`REF_SCOPE_ID_`,`REF_SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_ENT_LNK_ROOT_SCOPE` (`ROOT_SCOPE_ID_`,`ROOT_SCOPE_TYPE_`,`LINK_TYPE_`), + KEY `ACT_IDX_ENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_ENTITYLINK +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_EVENT_SUBSCR +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_EVENT_SUBSCR`; +CREATE TABLE `ACT_RU_EVENT_SUBSCR` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `EVENT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `EVENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACTIVITY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CONFIGURATION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATED_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_EVENT_SUBSCR_CONFIG_` (`CONFIGURATION_`), + KEY `ACT_IDX_EVENT_SUBSCR_SCOPEREF_` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_EVENT_EXEC` (`EXECUTION_ID_`), + CONSTRAINT `ACT_FK_EVENT_EXEC` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_EVENT_SUBSCR +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_EXECUTION +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_EXECUTION`; +CREATE TABLE `ACT_RU_EXECUTION` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `BUSINESS_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SUPER_EXEC_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ROOT_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `IS_ACTIVE_` tinyint DEFAULT NULL, + `IS_CONCURRENT_` tinyint DEFAULT NULL, + `IS_SCOPE_` tinyint DEFAULT NULL, + `IS_EVENT_SCOPE_` tinyint DEFAULT NULL, + `IS_MI_ROOT_` tinyint DEFAULT NULL, + `SUSPENSION_STATE_` int DEFAULT NULL, + `CACHED_ENT_STATE_` int DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `START_TIME_` datetime(3) DEFAULT NULL, + `START_USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `IS_COUNT_ENABLED_` tinyint DEFAULT NULL, + `EVT_SUBSCR_COUNT_` int DEFAULT NULL, + `TASK_COUNT_` int DEFAULT NULL, + `JOB_COUNT_` int DEFAULT NULL, + `TIMER_JOB_COUNT_` int DEFAULT NULL, + `SUSP_JOB_COUNT_` int DEFAULT NULL, + `DEADLETTER_JOB_COUNT_` int DEFAULT NULL, + `EXTERNAL_WORKER_JOB_COUNT_` int DEFAULT NULL, + `VAR_COUNT_` int DEFAULT NULL, + `ID_LINK_COUNT_` int DEFAULT NULL, + `CALLBACK_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CALLBACK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REFERENCE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `REFERENCE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `BUSINESS_STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_EXEC_BUSKEY` (`BUSINESS_KEY_`), + KEY `ACT_IDC_EXEC_ROOT` (`ROOT_PROC_INST_ID_`), + KEY `ACT_IDX_EXEC_REF_ID_` (`REFERENCE_ID_`), + KEY `ACT_FK_EXE_PROCINST` (`PROC_INST_ID_`), + KEY `ACT_FK_EXE_PARENT` (`PARENT_ID_`), + KEY `ACT_FK_EXE_SUPER` (`SUPER_EXEC_`), + KEY `ACT_FK_EXE_PROCDEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_EXE_PARENT` FOREIGN KEY (`PARENT_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE, + CONSTRAINT `ACT_FK_EXE_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_EXE_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `ACT_FK_EXE_SUPER` FOREIGN KEY (`SUPER_EXEC_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_EXECUTION +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_EXTERNAL_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_EXTERNAL_JOB`; +CREATE TABLE `ACT_RU_EXTERNAL_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCLUSIVE_` tinyint(1) DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RETRIES_` int DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DUEDATE_` timestamp(3) NULL DEFAULT NULL, + `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_EXTERNAL_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`), + KEY `ACT_IDX_EXTERNAL_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`), + KEY `ACT_IDX_EXTERNAL_JOB_CORRELATION_ID` (`CORRELATION_ID_`), + KEY `ACT_IDX_EJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_EJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_EJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + CONSTRAINT `ACT_FK_EXTERNAL_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_EXTERNAL_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_EXTERNAL_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_HISTORY_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_HISTORY_JOB`; +CREATE TABLE `ACT_RU_HISTORY_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RETRIES_` int DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ADV_HANDLER_CFG_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_HISTORY_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_IDENTITYLINK +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_IDENTITYLINK`; +CREATE TABLE `ACT_RU_IDENTITYLINK` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `GROUP_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_IDENT_LNK_USER` (`USER_ID_`), + KEY `ACT_IDX_IDENT_LNK_GROUP` (`GROUP_ID_`), + KEY `ACT_IDX_IDENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_IDENT_LNK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_IDENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_ATHRZ_PROCEDEF` (`PROC_DEF_ID_`), + KEY `ACT_FK_TSKASS_TASK` (`TASK_ID_`), + KEY `ACT_FK_IDL_PROCINST` (`PROC_INST_ID_`), + CONSTRAINT `ACT_FK_ATHRZ_PROCEDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_IDL_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_TSKASS_TASK` FOREIGN KEY (`TASK_ID_`) REFERENCES `ACT_RU_TASK` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_IDENTITYLINK +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_JOB`; +CREATE TABLE `ACT_RU_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCLUSIVE_` tinyint(1) DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RETRIES_` int DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DUEDATE_` timestamp(3) NULL DEFAULT NULL, + `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`), + KEY `ACT_IDX_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`), + KEY `ACT_IDX_JOB_CORRELATION_ID` (`CORRELATION_ID_`), + KEY `ACT_IDX_JOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_JOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_JOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_JOB_EXECUTION` (`EXECUTION_ID_`), + KEY `ACT_FK_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`), + KEY `ACT_FK_JOB_PROC_DEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_SUSPENDED_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_SUSPENDED_JOB`; +CREATE TABLE `ACT_RU_SUSPENDED_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `EXCLUSIVE_` tinyint(1) DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RETRIES_` int DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DUEDATE_` timestamp(3) NULL DEFAULT NULL, + `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_SUSPENDED_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`), + KEY `ACT_IDX_SUSPENDED_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`), + KEY `ACT_IDX_SUSPENDED_JOB_CORRELATION_ID` (`CORRELATION_ID_`), + KEY `ACT_IDX_SJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_SJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_SJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_SUSPENDED_JOB_EXECUTION` (`EXECUTION_ID_`), + KEY `ACT_FK_SUSPENDED_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`), + KEY `ACT_FK_SUSPENDED_JOB_PROC_DEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_SUSPENDED_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_SUSPENDED_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_SUSPENDED_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_SUSPENDED_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_SUSPENDED_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_SUSPENDED_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_TASK +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_TASK`; +CREATE TABLE `ACT_RU_TASK` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `STATE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `PARENT_TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_DEF_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `DELEGATION_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PRIORITY_` int DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `IN_PROGRESS_TIME_` datetime(3) DEFAULT NULL, + `IN_PROGRESS_STARTED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CLAIM_TIME_` datetime(3) DEFAULT NULL, + `CLAIMED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUSPENDED_TIME_` datetime(3) DEFAULT NULL, + `SUSPENDED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `IN_PROGRESS_DUE_DATE_` datetime(3) DEFAULT NULL, + `DUE_DATE_` datetime(3) DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUSPENSION_STATE_` int DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + `FORM_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `IS_COUNT_ENABLED_` tinyint DEFAULT NULL, + `VAR_COUNT_` int DEFAULT NULL, + `ID_LINK_COUNT_` int DEFAULT NULL, + `SUB_TASK_COUNT_` int DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_TASK_CREATE` (`CREATE_TIME_`), + KEY `ACT_IDX_TASK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_TASK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_TASK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_TASK_EXE` (`EXECUTION_ID_`), + KEY `ACT_FK_TASK_PROCINST` (`PROC_INST_ID_`), + KEY `ACT_FK_TASK_PROCDEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_TASK_EXE` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_TASK_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_TASK_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_TASK +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_TIMER_JOB +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_TIMER_JOB`; +CREATE TABLE `ACT_RU_TIMER_JOB` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, + `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCLUSIVE_` tinyint(1) DEFAULT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RETRIES_` int DEFAULT NULL, + `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `DUEDATE_` timestamp(3) NULL DEFAULT NULL, + `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_TIMER_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`), + KEY `ACT_IDX_TIMER_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`), + KEY `ACT_IDX_TIMER_JOB_CORRELATION_ID` (`CORRELATION_ID_`), + KEY `ACT_IDX_TIMER_JOB_DUEDATE` (`DUEDATE_`), + KEY `ACT_IDX_TJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_TJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_TJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_TIMER_JOB_EXECUTION` (`EXECUTION_ID_`), + KEY `ACT_FK_TIMER_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`), + KEY `ACT_FK_TIMER_JOB_PROC_DEF` (`PROC_DEF_ID_`), + CONSTRAINT `ACT_FK_TIMER_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_TIMER_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_TIMER_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_TIMER_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`), + CONSTRAINT `ACT_FK_TIMER_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_TIMER_JOB +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for ACT_RU_VARIABLE +-- ---------------------------- +DROP TABLE IF EXISTS `ACT_RU_VARIABLE`; +CREATE TABLE `ACT_RU_VARIABLE` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL, + `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `DOUBLE_` double DEFAULT NULL, + `LONG_` bigint DEFAULT NULL, + `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL, + PRIMARY KEY (`ID_`), + KEY `ACT_IDX_RU_VAR_SCOPE_ID_TYPE` (`SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_IDX_RU_VAR_SUB_ID_TYPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`), + KEY `ACT_FK_VAR_BYTEARRAY` (`BYTEARRAY_ID_`), + KEY `ACT_IDX_VARIABLE_TASK_ID` (`TASK_ID_`), + KEY `ACT_FK_VAR_EXE` (`EXECUTION_ID_`), + KEY `ACT_FK_VAR_PROCINST` (`PROC_INST_ID_`), + CONSTRAINT `ACT_FK_VAR_BYTEARRAY` FOREIGN KEY (`BYTEARRAY_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`), + CONSTRAINT `ACT_FK_VAR_EXE` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`), + CONSTRAINT `ACT_FK_VAR_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of ACT_RU_VARIABLE +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for eims_equ +-- ---------------------------- +DROP TABLE IF EXISTS `eims_equ`; +CREATE TABLE `eims_equ` ( + `equ_id` bigint NOT NULL, + `equ_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璁惧缂栫爜', + `equ_type_id` bigint DEFAULT NULL COMMENT '璁惧绫诲瀷', + `asset_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璧勪骇缂栧彿', + `equ_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璁惧鍚嶇О\n', + `model_no` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍨嬪彿', + `made_in` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍒堕�犲晢', + `rated_power` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '棰濆畾鍔熺巼', + `plate_info` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '閾墝淇℃伅', + `purchase_date` date DEFAULT NULL COMMENT '閲囪喘鏃ユ湡', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐘舵��', + `location` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鎵�鍦ㄥ満鎵�', + `dept_used` bigint DEFAULT NULL COMMENT '浣跨敤閮ㄩ棬锛堝叧鑱攊d锛�', + `resp_person` bigint DEFAULT NULL COMMENT '璐d换浜�(鍏宠仈id)', + `contact_phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鑱旂郴鐢佃瘽', + `deploy_date` date DEFAULT NULL COMMENT '姝e紡浣跨敤鏃ユ湡', + `trial_date` date DEFAULT NULL COMMENT '寮�濮嬭瘯鐢ㄦ棩鏈�', + `plan_accept_date` date DEFAULT NULL COMMENT '璁″垝楠屾敹鏃ユ湡', + `actual_accept_date` date DEFAULT NULL COMMENT '瀹為檯楠屾敹鏃ユ湡', + `import_status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '瀵煎叆鐘舵�侊紙瀛楀吀锛�', + `inventory_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鏍囧織', + `inventory_date` date DEFAULT NULL COMMENT '涓婃鐩樼偣鏃ユ湡', + `service_life` int DEFAULT NULL COMMENT '浣跨敤骞撮檺', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`equ_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_equ +-- ---------------------------- +BEGIN; +INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1000, '10010', 1, '1001', '1#璐寸墖鏈�1', 'E300', '涓婃捣鍏板疂', '3000', '鍖椾含灏忕背', '2025-01-02', '2', '鍏板疂1鍙疯溅闂�', 101, 1, '18597012158', '2025-01-04', '2024-12-30', '2025-01-09', '2025-01-09', '0', '0', '2025-01-09', 6, NULL, NULL, NULL, 1, '2025-02-07 13:22:20', NULL); +INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875827537628749825, '1', 3, '1002', '1122', NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', NULL, NULL, 103, 1, '2025-01-05 16:51:51', 1, '2025-01-14 09:58:04', NULL); +INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876204236438884354, NULL, 31, NULL, '鍝堝搱', NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', NULL, NULL, 103, 1, '2025-01-06 17:48:43', 1, '2025-01-07 14:49:45', NULL); +INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878988394319949826, '10000', 1, '123456', '娴嬭瘯11', 'E300', '涓婃捣鍏板疂', '3000', '鍖椾含灏忕背', '2025-01-14', '0', '1鍙疯溅闂�', 100, 1, '18597012158', '2025-01-14', '2025-01-14', '2025-01-14', '2025-01-14', '0', '0', '2025-01-14', 10, 103, 1, '2025-01-14 10:11:58', 1, '2025-01-14 10:12:05', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for eims_equ_statu +-- ---------------------------- +DROP TABLE IF EXISTS `eims_equ_statu`; +CREATE TABLE `eims_equ_statu` ( + `equ_statu_id` bigint NOT NULL, + `equ_id` bigint NOT NULL COMMENT '璁惧id', + `before_change` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍙樻洿鍓嶇姸鎬�', + `after_change` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍙樻洿鍚庣姸鎬�', + `change_date` datetime DEFAULT NULL COMMENT '鍙樻洿鏃ユ湡', + `change_user` bigint DEFAULT NULL COMMENT '鍙樻洿浜�', + `user_dept` bigint DEFAULT NULL COMMENT '鍙樻洿浜洪儴闂�', + `change_desc` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍙樻洿鎻忚堪', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鎻忚堪', + PRIMARY KEY (`equ_statu_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_equ_statu +-- ---------------------------- +BEGIN; +INSERT INTO `eims_equ_statu` (`equ_statu_id`, `equ_id`, `before_change`, `after_change`, `change_date`, `change_user`, `user_dept`, `change_desc`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879078207500865538, 1875827537628749825, '0', '2', '2025-01-14 16:08:36', 1, 100, '1212', 103, 1, '2025-01-14 16:08:51', 1, '2025-01-15 10:11:08', NULL); +INSERT INTO `eims_equ_statu` (`equ_statu_id`, `equ_id`, `before_change`, `after_change`, `change_date`, `change_user`, `user_dept`, `change_desc`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879335212484472833, 1000, '2', '3', '2025-01-15 09:09:50', 1, 100, '娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯', 103, 1, '2025-01-15 09:10:06', 1, '2025-01-15 15:12:45', NULL); +INSERT INTO `eims_equ_statu` (`equ_statu_id`, `equ_id`, `before_change`, `after_change`, `change_date`, `change_user`, `user_dept`, `change_desc`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879350376495665154, 1000, '2', '3', '2025-01-15 10:10:10', 1, 100, '1212', 103, 1, '2025-01-15 10:10:21', 1, '2025-01-15 10:10:21', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for eims_equ_trial +-- ---------------------------- +DROP TABLE IF EXISTS `eims_equ_trial`; +CREATE TABLE `eims_equ_trial` ( + `trial_id` bigint NOT NULL COMMENT '璇曠敤璁板綍id', + `equ_id` bigint NOT NULL COMMENT '璁惧id', + `trial_num` int DEFAULT NULL COMMENT '璇曚骇鏁伴噺', + `trial_date` date DEFAULT NULL COMMENT '璇曚骇鏃ユ湡', + `pro_good_num` int DEFAULT NULL COMMENT '鑹搧鏁伴噺', + `pro_good_rate` double DEFAULT NULL COMMENT '鑹搧鐜�', + `operator_dept` bigint DEFAULT NULL COMMENT '鎿嶄綔浜洪儴闂�', + `operator_id` bigint DEFAULT NULL COMMENT '鎿嶄綔浜�(id)', + `start_time` time DEFAULT NULL COMMENT '寮�濮嬫椂闂�', + `end_time` time DEFAULT NULL COMMENT '缁撴潫鏃堕棿', + `run_time` time DEFAULT NULL COMMENT '杩愯鏃堕暱', + `stop_time` time DEFAULT NULL COMMENT '鍋滄満鏃堕暱', + `plan_run_time` time DEFAULT NULL COMMENT '璁″垝杩愯鏃堕暱', + `debug_history` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璋冭瘯灞ュ巻', + `oee` double DEFAULT NULL COMMENT '璁惧缁煎悎鏁堢巼', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`trial_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_equ_trial +-- ---------------------------- +BEGIN; +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1876204236438884354, 100, '2025-01-11', 951, 95, 100, 1, '14:56:48', '13:56:52', '06:00:00', '02:00:00', '07:00:00', '1.娴嬭瘯bug\n2.鍝堝搱鍝堝搱\n3.鍛靛懙鍛�', 85, NULL, NULL, NULL, 1, '2025-01-13 13:38:09', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878311855408050177, 1875827537628749825, NULL, '2025-01-12', 100, 100, 100, 1, '00:00:00', '01:00:00', '04:00:00', '01:00:00', '06:00:00', '娴嬭瘯', NULL, 103, 1, '2025-01-12 13:23:38', 1, '2025-01-13 13:36:05', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878695098922127361, 1000, 1, '2025-01-13', 1, 1, NULL, NULL, '00:04:00', NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 14:46:31', 1, '2025-01-13 14:46:31', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878715702941405185, 1875827537628749825, NULL, '2025-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:08:23', 1, '2025-01-13 16:08:23', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716769359974402, 1875827537628749825, NULL, '2025-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:12:37', 1, '2025-01-13 16:12:37', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716793649188865, 1876204236438884354, NULL, '2025-01-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:12:43', 1, '2025-01-13 16:12:43', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716820266242049, 1876204236438884354, NULL, '2025-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:12:49', 1, '2025-01-13 16:12:49', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716848254832642, 1876204236438884354, NULL, '2025-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:12:56', 1, '2025-01-13 16:12:56', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716874670559233, 1875827537628749825, NULL, '2025-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:13:02', 1, '2025-01-13 16:13:02', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716907243524098, 1875827537628749825, NULL, '2025-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:13:10', 1, '2025-01-13 16:13:10', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878716944031764482, 1875827537628749825, NULL, '2025-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-13 16:13:19', 1, '2025-01-13 16:13:19', NULL); +INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878988619851870210, 1878988394319949826, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-01-14 10:12:52', 1, '2025-01-14 10:12:52', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for eims_equ_type +-- ---------------------------- +DROP TABLE IF EXISTS `eims_equ_type`; +CREATE TABLE `eims_equ_type` ( + `equ_type_id` bigint NOT NULL, + `type_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL, + `type_code` varchar(10) COLLATE utf8mb4_general_ci DEFAULT NULL, + `parent_id` bigint DEFAULT NULL, + `order_num` int DEFAULT '0' COMMENT '鏄剧ず椤哄簭', + `menu_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鑿滃崟绫诲瀷锛圡鐩綍 C鑿滃崟 F鎸夐挳锛�', + `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '鑿滃崟鍥炬爣', + `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鑿滃崟鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '澶囨敞', + PRIMARY KEY (`equ_type_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_equ_type +-- ---------------------------- +BEGIN; +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '鍩烘湰璁惧', '10000', NULL, 1, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '鐢熶骇璁惧', '20000', NULL, NULL, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '鍘嬪姏璁惧', '30000', NULL, NULL, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '鍩烘湰瀛愮被1', '1000000', 1, 1, 'C', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '閿诲帇璁惧', '211', 2, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '閾搁�犺澶�', '212', 2, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '鍘嬪姏瀹瑰櫒', '311', 3, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '鍙嶅簲鍣�', '312', 3, 2, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876156501861937153, '娴嬭瘯1', '11', 0, 1, 'M', '#', '1', 103, 1, '2025-01-06 14:39:02', 1, '2025-01-06 14:40:19', ''); +INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876156551069511682, '娴嬭瘯瀛愮被1', '12', 1876156501861937153, 2, 'M', '#', '1', 103, 1, '2025-01-06 14:39:14', 1, '2025-01-06 17:54:31', ''); +COMMIT; + +-- ---------------------------- +-- Table structure for eims_inventory +-- ---------------------------- +DROP TABLE IF EXISTS `eims_inventory`; +CREATE TABLE `eims_inventory` ( + `inventory_id` bigint NOT NULL COMMENT '鐩樼偣id', + `inventory_code` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鍗曞彿', + `inventory_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鍚嶇О', + `equ_types` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鑼冨洿-璁惧绫诲瀷锛堣澶囩被鍨媔d锛�', + `equ_status` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鑼冨洿-璁惧鐘舵�侊紙璁惧鐘舵�佸瓧鍏革級', + `user_dept` bigint DEFAULT NULL COMMENT '鐢ㄦ埛閮ㄩ棬', + `inventory_user` bigint DEFAULT NULL COMMENT '鐩樼偣浜�', + `start_date` date DEFAULT NULL COMMENT '寮�濮嬫棩鏈�', + `end_date` date DEFAULT NULL COMMENT '缁撴潫鏃ユ湡', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣鐘舵��', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '澶囨敞', + PRIMARY KEY (`inventory_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_inventory +-- ---------------------------- +BEGIN; +INSERT INTO `eims_inventory` (`inventory_id`, `inventory_code`, `inventory_name`, `equ_types`, `equ_status`, `user_dept`, `inventory_user`, `start_date`, `end_date`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887748053364764673, 'PD11111', '鐩樼偣1', '1,11,2,21,22,3,31,32,1876156501861937153,1876156551069511682', '0', 100, 1, '2025-02-07', '2025-02-07', '0', 103, 1, '2025-02-07 14:19:43', 1, '2025-02-07 14:47:16', ''); +COMMIT; + +-- ---------------------------- +-- Table structure for eims_inventory_detail +-- ---------------------------- +DROP TABLE IF EXISTS `eims_inventory_detail`; +CREATE TABLE `eims_inventory_detail` ( + `id` bigint NOT NULL, + `inventory_id` bigint NOT NULL COMMENT '鐩樼偣id', + `equ_id` bigint NOT NULL COMMENT '璁惧id', + `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐩樼偣缁撴灉', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`id`), + KEY `del_detail` (`inventory_id`), + CONSTRAINT `del_detail` FOREIGN KEY (`inventory_id`) REFERENCES `eims_inventory` (`inventory_id`) ON DELETE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of eims_inventory_detail +-- ---------------------------- +BEGIN; +INSERT INTO `eims_inventory_detail` (`id`, `inventory_id`, `equ_id`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887748053410902017, 1887748053364764673, 1875827537628749825, '0', 103, 1, '2025-02-07 14:19:43', 1, '2025-02-07 14:19:43', NULL); +INSERT INTO `eims_inventory_detail` (`id`, `inventory_id`, `equ_id`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887748053419290625, 1887748053364764673, 1876204236438884354, '0', 103, 1, '2025-02-07 14:19:43', 1, '2025-02-07 14:19:43', NULL); +INSERT INTO `eims_inventory_detail` (`id`, `inventory_id`, `equ_id`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887748053427679234, 1887748053364764673, 1878988394319949826, '0', 103, 1, '2025-02-07 14:19:43', 1, '2025-02-07 14:19:43', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_CHANNEL_DEFINITION +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_CHANNEL_DEFINITION`; +CREATE TABLE `FLW_CHANNEL_DEFINITION` ( + `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `VERSION_` int DEFAULT NULL, + `KEY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `CREATE_TIME_` datetime(3) DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `RESOURCE_NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DESCRIPTION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `TYPE_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `IMPLEMENTATION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + PRIMARY KEY (`ID_`), + UNIQUE KEY `ACT_IDX_CHANNEL_DEF_UNIQ` (`KEY_`,`VERSION_`,`TENANT_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of FLW_CHANNEL_DEFINITION +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for flw_ev_databasechangelog +-- ---------------------------- +DROP TABLE IF EXISTS `flw_ev_databasechangelog`; +CREATE TABLE `flw_ev_databasechangelog` ( + `ID` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `AUTHOR` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `FILENAME` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `DATEEXECUTED` datetime NOT NULL, + `ORDEREXECUTED` int NOT NULL, + `EXECTYPE` varchar(10) COLLATE utf8mb4_general_ci NOT NULL, + `MD5SUM` varchar(35) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DESCRIPTION` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `COMMENTS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `TAG` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `LIQUIBASE` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL, + `CONTEXTS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `LABELS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DEPLOYMENT_ID` varchar(10) COLLATE utf8mb4_general_ci DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of flw_ev_databasechangelog +-- ---------------------------- +BEGIN; +INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('1', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 1, 'EXECUTED', '9:63268f536c469325acef35970312551b', 'createTable tableName=FLW_EVENT_DEPLOYMENT; createTable tableName=FLW_EVENT_RESOURCE; createTable tableName=FLW_EVENT_DEFINITION; createIndex indexName=ACT_IDX_EVENT_DEF_UNIQ, tableName=FLW_EVENT_DEFINITION; createTable tableName=FLW_CHANNEL_DEFIN...', '', NULL, '4.24.0', NULL, NULL, '5034489048'); +INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('2', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 2, 'EXECUTED', '9:dcb58b7dfd6dbda66939123a96985536', 'addColumn tableName=FLW_CHANNEL_DEFINITION; addColumn tableName=FLW_CHANNEL_DEFINITION', '', NULL, '4.24.0', NULL, NULL, '5034489048'); +INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('3', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 3, 'EXECUTED', '9:d0c05678d57af23ad93699991e3bf4f6', 'customChange', '', NULL, '4.24.0', NULL, NULL, '5034489048'); +COMMIT; + +-- ---------------------------- +-- Table structure for flw_ev_databasechangeloglock +-- ---------------------------- +DROP TABLE IF EXISTS `flw_ev_databasechangeloglock`; +CREATE TABLE `flw_ev_databasechangeloglock` ( + `ID` int NOT NULL, + `LOCKED` tinyint(1) NOT NULL, + `LOCKGRANTED` datetime DEFAULT NULL, + `LOCKEDBY` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + PRIMARY KEY (`ID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of flw_ev_databasechangeloglock +-- ---------------------------- +BEGIN; +INSERT INTO `flw_ev_databasechangeloglock` (`ID`, `LOCKED`, `LOCKGRANTED`, `LOCKEDBY`) VALUES (1, 0, NULL, NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_EVENT_DEFINITION +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_EVENT_DEFINITION`; +CREATE TABLE `FLW_EVENT_DEFINITION` ( + `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `VERSION_` int DEFAULT NULL, + `KEY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `RESOURCE_NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DESCRIPTION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + PRIMARY KEY (`ID_`), + UNIQUE KEY `ACT_IDX_EVENT_DEF_UNIQ` (`KEY_`,`VERSION_`,`TENANT_ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of FLW_EVENT_DEFINITION +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_EVENT_DEPLOYMENT +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_EVENT_DEPLOYMENT`; +CREATE TABLE `FLW_EVENT_DEPLOYMENT` ( + `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DEPLOY_TIME_` datetime(3) DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `PARENT_DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of FLW_EVENT_DEPLOYMENT +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_EVENT_RESOURCE +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_EVENT_RESOURCE`; +CREATE TABLE `FLW_EVENT_RESOURCE` ( + `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, + `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, + `RESOURCE_BYTES_` longblob, + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + +-- ---------------------------- +-- Records of FLW_EVENT_RESOURCE +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_RU_BATCH +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_RU_BATCH`; +CREATE TABLE `FLW_RU_BATCH` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `TYPE_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `SEARCH_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SEARCH_KEY2_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` datetime(3) NOT NULL, + `COMPLETE_TIME_` datetime(3) DEFAULT NULL, + `STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `BATCH_DOC_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of FLW_RU_BATCH +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for FLW_RU_BATCH_PART +-- ---------------------------- +DROP TABLE IF EXISTS `FLW_RU_BATCH_PART`; +CREATE TABLE `FLW_RU_BATCH_PART` ( + `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `REV_` int DEFAULT NULL, + `BATCH_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TYPE_` varchar(64) COLLATE utf8mb3_bin NOT NULL, + `SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SUB_SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SCOPE_TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `SEARCH_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `SEARCH_KEY2_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `CREATE_TIME_` datetime(3) NOT NULL, + `COMPLETE_TIME_` datetime(3) DEFAULT NULL, + `STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL, + `RESULT_DOC_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL, + `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '', + PRIMARY KEY (`ID_`), + KEY `FLW_IDX_BATCH_PART` (`BATCH_ID_`), + CONSTRAINT `FLW_FK_BATCH_PART_PARENT` FOREIGN KEY (`BATCH_ID_`) REFERENCES `FLW_RU_BATCH` (`ID_`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + +-- ---------------------------- +-- Records of FLW_RU_BATCH_PART +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for gen_table +-- ---------------------------- +DROP TABLE IF EXISTS `gen_table`; +CREATE TABLE `gen_table` ( + `table_id` bigint NOT NULL COMMENT '缂栧彿', + `data_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鏁版嵁婧愬悕绉�', + `table_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '琛ㄥ悕绉�', + `table_comment` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '琛ㄦ弿杩�', + `sub_table_name` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍏宠仈瀛愯〃鐨勮〃鍚�', + `sub_table_fk_name` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '瀛愯〃鍏宠仈鐨勫閿悕', + `class_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀹炰綋绫诲悕绉�', + `tpl_category` varchar(200) COLLATE utf8mb4_general_ci DEFAULT 'crud' COMMENT '浣跨敤鐨勬ā鏉匡紙crud鍗曡〃鎿嶄綔 tree鏍戣〃鎿嶄綔锛�', + `package_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢熸垚鍖呰矾寰�', + `module_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢熸垚妯″潡鍚�', + `business_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢熸垚涓氬姟鍚�', + `function_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢熸垚鍔熻兘鍚�', + `function_author` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢熸垚鍔熻兘浣滆��', + `gen_type` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鐢熸垚浠g爜鏂瑰紡锛�0zip鍘嬬缉鍖� 1鑷畾涔夎矾寰勶級', + `gen_path` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '/' COMMENT '鐢熸垚璺緞锛堜笉濉粯璁ら」鐩矾寰勶級', + `options` varchar(1000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍏跺畠鐢熸垚閫夐」', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`table_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='浠g爜鐢熸垚涓氬姟琛�'; + +-- ---------------------------- +-- Records of gen_table +-- ---------------------------- +BEGIN; +INSERT INTO `gen_table` (`table_id`, `data_name`, `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_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878998754225594370, 'master', 'eims_equ_statu', '璁惧鐘舵�佽褰曡〃', NULL, NULL, 'EimsEquStatu', 'crud', 'org.dromara.eims', 'eims', 'equStatu', '璁惧鐘舵�佽褰�', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01', NULL); +INSERT INTO `gen_table` (`table_id`, `data_name`, `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_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879759150687555586, 'master', 'eims_inventory', '鐩樼偣琛�', NULL, NULL, 'EimsInventory', 'crud', 'org.dromara.equ', 'equ', 'inventory', '鐩樼偣', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54', NULL); +INSERT INTO `gen_table` (`table_id`, `data_name`, `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_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887329734783520770, 'master', 'eims_inventory_detail', '鐩樼偣鏄庣粏琛�', NULL, NULL, 'EimsInventoryDetail', 'crud', 'org.dromara.eims', 'eims', 'inventoryDetail', '鐩樼偣鏄庣粏', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1879762189070733313\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04', 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 COMMENT '缂栧彿', + `table_id` bigint DEFAULT NULL COMMENT '褰掑睘琛ㄧ紪鍙�', + `column_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍒楀悕绉�', + `column_comment` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍒楁弿杩�', + `column_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍒楃被鍨�', + `java_type` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA绫诲瀷', + `java_field` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA瀛楁鍚�', + `is_pk` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁涓婚敭锛�1鏄級', + `is_increment` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁鑷锛�1鏄級', + `is_required` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁蹇呭~锛�1鏄級', + `is_insert` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁涓烘彃鍏ュ瓧娈碉紙1鏄級', + `is_edit` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁缂栬緫瀛楁锛�1鏄級', + `is_list` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁鍒楄〃瀛楁锛�1鏄級', + `is_query` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄惁鏌ヨ瀛楁锛�1鏄級', + `query_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT 'EQ' COMMENT '鏌ヨ鏂瑰紡锛堢瓑浜庛�佷笉绛変簬銆佸ぇ浜庛�佸皬浜庛�佽寖鍥达級', + `html_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏄剧ず绫诲瀷锛堟枃鏈銆佹枃鏈煙銆佷笅鎷夋銆佸閫夋銆佸崟閫夋銆佹棩鏈熸帶浠讹級', + `dict_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀绫诲瀷', + `sort` int DEFAULT NULL COMMENT '鎺掑簭', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + PRIMARY KEY (`column_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='浠g爜鐢熸垚涓氬姟琛ㄥ瓧娈�'; + +-- ---------------------------- +-- 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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754393366529, 1878998754225594370, 'equ_statu_id', '璁惧鐘舵�佽褰昳d', 'bigint', 'Long', 'equStatuId', '1', '1', '0', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754401755138, 1878998754225594370, 'equ_id', '璁惧id', 'bigint', 'Long', 'equId', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', '', 2, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949441, 1878998754225594370, 'before_change', '鍙樻洿鍓嶇姸鎬�', 'char', 'String', 'beforeChange', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949442, 1878998754225594370, 'after_change', '鍙樻洿鍚庣姸鎬�', 'char', 'String', 'afterChange', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949443, 1878998754225594370, 'change_date', '鍙樻洿鏃ユ湡', 'datetime', 'Date', 'changeDate', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 5, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754410143745, 1878998754225594370, 'change_user', '鍙樻洿浜�', 'bigint', 'Long', 'changeUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754410143746, 1878998754225594370, 'user_dept', '鍙樻洿浜洪儴闂�', 'bigint', 'Long', 'userDept', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754414338050, 1878998754225594370, 'change_desc', '鍙樻洿鎻忚堪', 'varchar', 'String', 'changeDesc', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754414338051, 1878998754225594370, 'create_dept', '鍒涘缓閮ㄩ棬', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532354, 1878998754225594370, 'create_by', '鍒涘缓鑰�', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532355, 1878998754225594370, 'create_time', '鍒涘缓鏃堕棿', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532356, 1878998754225594370, 'update_by', '鏇存柊鑰�', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754422726657, 1878998754225594370, 'update_time', '鏇存柊鏃堕棿', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754422726658, 1878998754225594370, 'remark', '鎻忚堪', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150742081538, 1879759150687555586, 'inventory_id', '鐩樼偣id', 'bigint', 'Long', 'inventoryId', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150742081539, 1879759150687555586, 'inventory_code', '鐩樼偣鍗曞彿', 'varchar', 'String', 'inventoryCode', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275841, 1879759150687555586, 'inventory_name', '鐩樼偣鍚嶇О', 'varchar', 'String', 'inventoryName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275842, 1879759150687555586, 'inventory_user', '鐩樼偣浜�', 'bigint', 'Long', 'inventoryUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275843, 1879759150687555586, 'start_date', '寮�濮嬫棩鏈�', 'datetime', 'Date', 'startDate', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 5, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275844, 1879759150687555586, 'end_date', '缁撴潫鏃ユ湡', 'datetime', 'Date', 'endDate', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 6, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470145, 1879759150687555586, 'status', '鐩樼偣鐘舵��', 'char', 'String', 'status', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 7, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470146, 1879759150687555586, 'create_dept', '鍒涘缓閮ㄩ棬', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470147, 1879759150687555586, 'create_by', '鍒涘缓鑰�', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '1', 'BETWEEN', 'input', '', 9, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470148, 1879759150687555586, 'create_time', '鍒涘缓鏃堕棿', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664449, 1879759150687555586, 'update_by', '鏇存柊鑰�', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664450, 1879759150687555586, 'update_time', '鏇存柊鏃堕棿', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664451, 1879759150687555586, 'remark', '澶囨敞', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734955487233, 1887329734783520770, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875841, 1887329734783520770, 'inventory_id', '鐩樼偣id', 'bigint', 'Long', 'inventoryId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875842, 1887329734783520770, 'equ_id', '璁惧id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875843, 1887329734783520770, 'status', '鐩樼偣缁撴灉', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 4, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070145, 1887329734783520770, 'create_dept', '鍒涘缓閮ㄩ棬', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070146, 1887329734783520770, 'create_by', '鍒涘缓鑰�', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 6, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070147, 1887329734783520770, 'create_time', '鍒涘缓鏃堕棿', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 7, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070148, 1887329734783520770, 'update_by', '鏇存柊鑰�', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070149, 1887329734783520770, 'update_time', '鏇存柊鏃堕棿', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 9, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +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_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734972264450, 1887329734783520770, 'remark', '澶囨敞', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04'); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_client +-- ---------------------------- +DROP TABLE IF EXISTS `sys_client`; +CREATE TABLE `sys_client` ( + `id` bigint NOT NULL COMMENT 'id', + `client_id` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '瀹㈡埛绔痠d', + `client_key` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '瀹㈡埛绔痥ey', + `client_secret` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '瀹㈡埛绔閽�', + `grant_type` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鎺堟潈绫诲瀷', + `device_type` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璁惧绫诲瀷', + `active_timeout` int DEFAULT '1800' COMMENT 'token娲昏穬瓒呮椂鏃堕棿', + `timeout` int DEFAULT '604800' COMMENT 'token鍥哄畾瓒呮椂', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='绯荤粺鎺堟潈琛�'; + +-- ---------------------------- +-- Records of sys_client +-- ---------------------------- +BEGIN; +INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, '0', '0', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24'); +INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, '0', '0', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24'); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_config +-- ---------------------------- +DROP TABLE IF EXISTS `sys_config`; +CREATE TABLE `sys_config` ( + `config_id` bigint NOT NULL COMMENT '鍙傛暟涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `config_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鍙傛暟鍚嶇О', + `config_key` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鍙傛暟閿悕', + `config_value` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鍙傛暟閿��', + `config_type` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '绯荤粺鍐呯疆锛圷鏄� N鍚︼級', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`config_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='鍙傛暟閰嶇疆琛�'; + +-- ---------------------------- +-- Records of sys_config +-- ---------------------------- +BEGIN; +INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '涓绘鏋堕〉-榛樿鐨偆鏍峰紡鍚嶇О', 'sys.index.skinName', 'skin-blue', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '钃濊壊 skin-blue銆佺豢鑹� skin-green銆佺传鑹� skin-purple銆佺孩鑹� skin-red銆侀粍鑹� skin-yellow'); +INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '鐢ㄦ埛绠$悊-璐﹀彿鍒濆瀵嗙爜', 'sys.user.initPassword', '123456', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍒濆鍖栧瘑鐮� 123456'); +INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '涓绘鏋堕〉-渚ц竟鏍忎富棰�', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '娣辫壊涓婚theme-dark锛屾祬鑹蹭富棰榯heme-light'); +INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', '璐﹀彿鑷姪-鏄惁寮�鍚敤鎴锋敞鍐屽姛鑳�', 'sys.account.registerUser', 'false', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鏄惁寮�鍚敞鍐岀敤鎴峰姛鑳斤紙true寮�鍚紝false鍏抽棴锛�'); +INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', 'OSS棰勮鍒楄〃璧勬簮寮�鍏�', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'true:寮�鍚�, false:鍏抽棴'); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_dept +-- ---------------------------- +DROP TABLE IF EXISTS `sys_dept`; +CREATE TABLE `sys_dept` ( + `dept_id` bigint NOT NULL COMMENT '閮ㄩ棬id', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `parent_id` bigint DEFAULT '0' COMMENT '鐖堕儴闂╥d', + `ancestors` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '绁栫骇鍒楄〃', + `dept_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '閮ㄩ棬鍚嶇О', + `dept_category` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '閮ㄩ棬绫诲埆缂栫爜', + `order_num` int DEFAULT '0' COMMENT '鏄剧ず椤哄簭', + `leader` bigint DEFAULT NULL COMMENT '璐熻矗浜�', + `phone` varchar(11) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鑱旂郴鐢佃瘽', + `email` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '閭', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '閮ㄩ棬鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + PRIMARY KEY (`dept_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='閮ㄩ棬琛�'; + +-- ---------------------------- +-- Records of sys_dept +-- ---------------------------- +BEGIN; +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, '000000', 0, '0', 'XXX绉戞妧', NULL, 0, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, '000000', 100, '0,100', '娣卞湷鎬诲叕鍙�', NULL, 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, '000000', 100, '0,100', '闀挎矙鍒嗗叕鍙�', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, '000000', 101, '0,100,101', '鐮斿彂閮ㄩ棬', NULL, 1, 1, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, '000000', 101, '0,100,101', '甯傚満閮ㄩ棬', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, '000000', 101, '0,100,101', '娴嬭瘯閮ㄩ棬', NULL, 3, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, '000000', 101, '0,100,101', '璐㈠姟閮ㄩ棬', NULL, 4, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, '000000', 101, '0,100,101', '杩愮淮閮ㄩ棬', NULL, 5, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, '000000', 102, '0,100,102', '甯傚満閮ㄩ棬', NULL, 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, '000000', 102, '0,100,102', '璐㈠姟閮ㄩ棬', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_dict_data +-- ---------------------------- +DROP TABLE IF EXISTS `sys_dict_data`; +CREATE TABLE `sys_dict_data` ( + `dict_code` bigint NOT NULL COMMENT '瀛楀吀缂栫爜', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `dict_sort` int DEFAULT '0' COMMENT '瀛楀吀鎺掑簭', + `dict_label` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀鏍囩', + `dict_value` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀閿��', + `dict_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀绫诲瀷', + `css_class` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏍峰紡灞炴�э紙鍏朵粬鏍峰紡鎵╁睍锛�', + `list_class` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '琛ㄦ牸鍥炴樉鏍峰紡', + `is_default` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '鏄惁榛樿锛圷鏄� N鍚︼級', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`dict_code`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='瀛楀吀鏁版嵁琛�'; + +-- ---------------------------- +-- Records of sys_dict_data +-- ---------------------------- +BEGIN; +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 1, '鐢�', '0', 'sys_user_sex', '', '', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎬у埆鐢�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 2, '濂�', '1', 'sys_user_sex', '', '', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎬у埆濂�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 3, '鏈煡', '2', 'sys_user_sex', '', '', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎬у埆鏈煡'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 1, '鏄剧ず', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鏄剧ず鑿滃崟'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 2, '闅愯棌', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '闅愯棌鑿滃崟'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', 1, '姝e父', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '姝e父鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', 2, '鍋滅敤', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍋滅敤鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', 1, '鏄�', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绯荤粺榛樿鏄�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, '000000', 2, '鍚�', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绯荤粺榛樿鍚�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, '000000', 1, '閫氱煡', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閫氱煡'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, '000000', 2, '鍏憡', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍏憡'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, '000000', 1, '姝e父', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '姝e父鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, '000000', 2, '鍏抽棴', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍏抽棴鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, '000000', 1, '鏂板', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鏂板鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, '000000', 2, '淇敼', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '淇敼鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, '000000', 3, '鍒犻櫎', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍒犻櫎鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '000000', 4, '鎺堟潈', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎺堟潈鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '000000', 5, '瀵煎嚭', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀵煎嚭鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, '000000', 6, '瀵煎叆', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀵煎叆鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, '000000', 7, '寮洪��', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '寮洪��鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, '000000', 8, '鐢熸垚浠g爜', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐢熸垚鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, '000000', 9, '娓呯┖鏁版嵁', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '娓呯┖鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, '000000', 1, '鎴愬姛', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '姝e父鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, '000000', 2, '澶辫触', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍋滅敤鐘舵��'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, '000000', 99, '鍏朵粬', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍏朵粬鎿嶄綔'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (30, '000000', 0, '瀵嗙爜璁よ瘉', 'password', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀵嗙爜璁よ瘉'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '000000', 0, '鐭俊璁よ瘉', 'sms', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐭俊璁よ瘉'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '000000', 0, '閭欢璁よ瘉', 'email', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閭欢璁よ瘉'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (33, '000000', 0, '灏忕▼搴忚璇�', 'xcx', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '灏忕▼搴忚璇�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (34, '000000', 0, '涓夋柟鐧诲綍璁よ瘉', 'social', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '涓夋柟鐧诲綍璁よ瘉'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'PC'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (36, '000000', 0, '瀹夊崜', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀹夊崜'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'iOS'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (38, '000000', 0, '灏忕▼搴�', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '灏忕▼搴�'); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775031024390146, '000000', 1, '鍏ュ浐', '1', 'sys_equ_status', NULL, 'success', 'N', 103, 1, '2025-01-05 13:23:12', 1, '2025-01-05 13:24:15', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775264009588738, '000000', 0, '璇曠敤', '0', 'sys_equ_status', NULL, 'cyan', 'N', 103, 1, '2025-01-05 13:24:08', 1, '2025-01-05 13:24:22', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775424861147138, '000000', 2, '杩佺Щ', '2', 'sys_equ_status', NULL, 'warning', 'N', 103, 1, '2025-01-05 13:24:46', 1, '2025-01-05 13:24:46', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775593254064130, '000000', 3, '鎶ュ簾', '3', 'sys_equ_status', NULL, 'danger', 'N', 103, 1, '2025-01-05 13:25:26', 1, '2025-01-05 13:25:26', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880132039285956609, '000000', 1, '鐩樼偣涓�', '0', 'inventory_statu', NULL, 'primary', 'N', 103, 1, '2025-01-17 13:56:24', 1, '2025-01-17 13:56:24', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880132101483290626, '000000', 1, '鐩樼偣缁撴潫', '1', 'inventory_statu', NULL, 'green', 'N', 103, 1, '2025-01-17 13:56:39', 1, '2025-01-17 13:56:39', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888050111540211713, '000000', 0, '鏈洏', '0', 'inventory_detail_statu', NULL, 'red', 'N', 103, 1, '2025-02-08 10:20:00', 1, '2025-02-08 10:20:00', NULL); +INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888050166619811842, '000000', 1, '宸茬洏', '1', 'inventory_detail_statu', NULL, 'green', 'N', 103, 1, '2025-02-08 10:20:13', 1, '2025-02-08 10:20:13', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_dict_type +-- ---------------------------- +DROP TABLE IF EXISTS `sys_dict_type`; +CREATE TABLE `sys_dict_type` ( + `dict_id` bigint NOT NULL COMMENT '瀛楀吀涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `dict_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀鍚嶇О', + `dict_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀛楀吀绫诲瀷', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`dict_id`), + UNIQUE KEY `tenant_id` (`tenant_id`,`dict_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='瀛楀吀绫诲瀷琛�'; + +-- ---------------------------- +-- Records of sys_dict_type +-- ---------------------------- +BEGIN; +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '鐢ㄦ埛鎬у埆', 'sys_user_sex', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐢ㄦ埛鎬у埆鍒楄〃'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '鑿滃崟鐘舵��', 'sys_show_hide', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鑿滃崟鐘舵�佸垪琛�'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '绯荤粺寮�鍏�', 'sys_normal_disable', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绯荤粺寮�鍏冲垪琛�'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', '绯荤粺鏄惁', 'sys_yes_no', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绯荤粺鏄惁鍒楄〃'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', '閫氱煡绫诲瀷', 'sys_notice_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閫氱煡绫诲瀷鍒楄〃'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '000000', '閫氱煡鐘舵��', 'sys_notice_status', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閫氱煡鐘舵�佸垪琛�'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '000000', '鎿嶄綔绫诲瀷', 'sys_oper_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎿嶄綔绫诲瀷鍒楄〃'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '000000', '绯荤粺鐘舵��', 'sys_common_status', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐧诲綍鐘舵�佸垪琛�'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', '鎺堟潈绫诲瀷', 'sys_grant_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '璁よ瘉鎺堟潈绫诲瀷'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', '璁惧绫诲瀷', 'sys_device_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀹㈡埛绔澶囩被鍨�'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875774501413818370, '000000', '璁惧鐘舵��', 'sys_equ_status', 103, 1, '2025-01-05 13:21:06', 1, '2025-01-05 13:21:06', '璁惧鐘舵��'); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880131864534474754, '000000', '鐩樼偣鐘舵��', 'inventory_statu', 103, 1, '2025-01-17 13:55:42', 1, '2025-01-17 13:55:42', NULL); +INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888049931893977089, '000000', '鐩樼偣鏄庣粏鐘舵��', 'inventory_detail_statu', 103, 1, '2025-02-08 10:19:17', 1, '2025-02-08 10:19:17', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_logininfor +-- ---------------------------- +DROP TABLE IF EXISTS `sys_logininfor`; +CREATE TABLE `sys_logininfor` ( + `info_id` bigint NOT NULL COMMENT '璁块棶ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `user_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐢ㄦ埛璐﹀彿', + `client_key` varchar(32) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀹㈡埛绔�', + `device_type` varchar(32) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璁惧绫诲瀷', + `ipaddr` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐧诲綍IP鍦板潃', + `login_location` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐧诲綍鍦扮偣', + `browser` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '娴忚鍣ㄧ被鍨�', + `os` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎿嶄綔绯荤粺', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鐧诲綍鐘舵�侊紙0鎴愬姛 1澶辫触锛�', + `msg` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎻愮ず娑堟伅', + `login_time` datetime DEFAULT NULL COMMENT '璁块棶鏃堕棿', + PRIMARY KEY (`info_id`), + KEY `idx_sys_logininfor_s` (`status`), + KEY `idx_sys_logininfor_lt` (`login_time`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='绯荤粺璁块棶璁板綍'; + +-- ---------------------------- +-- Records of sys_logininfor +-- ---------------------------- +BEGIN; +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871496584306393090, '000000', 'admin', 'pc', 'pc', '127.0.0.1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-24 18:02:11'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871720420837150722, '000000', 'admin', 'pc', 'pc', '127.0.0.1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 08:51:38'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871728030088941570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 09:21:52'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871779118171279361, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 12:44:52'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871782185478377474, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 12:57:04'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871795579958841346, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 13:50:17'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871795588179677185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 13:50:19'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871799438533971970, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 14:05:37'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871799446419263489, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 14:05:39'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871802089833222145, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 14:16:09'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803470459686913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 14:21:38'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803564361764866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 14:22:01'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803572343525377, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 14:22:03'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871808583072993282, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 14:41:57'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830107041746945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 16:07:29'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830410789048322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 16:08:42'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830424097574914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 16:08:45'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871834337609699329, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 16:24:18'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871838281383727106, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 16:39:58'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871839014883610625, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 16:42:53'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871843355942113282, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 17:00:08'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871865138925719554, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:26:41'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871865419180724226, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:27:48'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871869336513859585, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:43:22'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871870574915670018, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:48:17'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871870751206461442, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:48:59'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871871629850234882, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:52:29'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872021539508225, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 18:54:02'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872061813215234, '000000', 'test', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:54:12'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872113172467714, '000000', 'test', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-25 18:54:24'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872123654033410, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:54:27'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871873279683907586, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 18:59:02'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871873663802462210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-25 19:00:34'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872088645924585474, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 09:14:50'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872095537421910017, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 09:42:13'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872095931027980289, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 09:43:46'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872150146739896321, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-26 13:19:13'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872152292516462594, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 13:27:44'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872162441910059009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 14:08:04'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872188523409342466, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-26 15:51:42'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872441665925447681, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 08:37:36'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872456844469895170, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 09:37:55'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872501747547668482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 12:36:21'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872546505187950593, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2024-12-27 15:34:12'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872546517921857538, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 15:34:15'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872560898298642433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 16:31:23'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872637860097392642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-27 21:37:12'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1873532055679647746, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-30 08:50:25'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874004918249709570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-31 16:09:24'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874015006662320129, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2024-12-31 16:49:30'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874706698095353857, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-02 14:38:02'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874714986363019265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-02 15:10:58'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874980690379247618, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-03 08:46:47'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875020542562897921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-03 11:25:08'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875041180170162178, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-03 12:47:09'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875065656681271297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-03 14:24:24'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875339319932137473, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-04 08:31:51'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875377823986778114, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-04 11:04:51'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875408553479536641, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-04 13:06:57'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875446459147751425, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-04 15:37:35'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875700063599169538, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 08:25:19'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875730435384905729, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 10:26:00'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875736833116180482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 10:51:25'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875738103713468418, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 10:56:28'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875738933434880002, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 10:59:46'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875740070498111489, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 11:04:17'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875740173912870913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 11:04:42'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875744348289732609, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 11:21:17'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875744640741773313, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 11:22:27'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875773421095325697, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 13:16:48'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875776779436789761, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 13:30:09'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875822490828255233, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'Android', '0', '鐧诲綍鎴愬姛', '2025-01-05 16:31:48'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875826869010554882, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-05 16:49:11'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876069092059054082, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-06 08:51:42'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876074454032121857, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2025-01-06 09:13:00'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876074461728669697, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-06 09:13:02'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876104579035275265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-06 11:12:43'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876127540245012482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-06 12:43:57'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876139103091986433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-06 13:29:54'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876498233021239298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-07 13:16:57'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876540733297811457, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-07 16:05:50'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876789967737638913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-08 08:36:12'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876808776334807042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-08 09:50:56'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876851115061252098, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-08 12:39:11'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876869219279441921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-08 13:51:07'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876882638082674690, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-08 14:44:26'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877150613083885569, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-09 08:29:17'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877189811648188417, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-09 11:05:02'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877217595653214209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-09 12:55:26'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877293797516509185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-09 17:58:14'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877525530943676417, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-10 09:19:04'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877942108896378881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-11 12:54:24'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877977265447739393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-11 15:14:06'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878245102627930113, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-12 08:58:23'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878284543048331266, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-12 11:35:07'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878300926553403393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-12 12:40:13'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878329832723476482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-12 14:35:04'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878598683336200193, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-13 08:23:23'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878607552477220866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-13 08:58:38'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878666108677214209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-13 12:51:19'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878712606580363265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-13 15:56:05'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878974017067892737, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-14 09:14:50'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878975112125169666, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-14 09:19:11'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878975622420971521, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Safari', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-14 09:21:13'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879049288601083905, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-14 14:13:56'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879333269250846721, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-15 09:02:22'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879348714955689985, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-15 10:03:45'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879388172891541505, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-15 12:40:32'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879411458979483649, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-15 14:13:04'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879693747617632258, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-16 08:54:47'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879715277047173122, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-16 10:20:20'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879752935412699138, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-16 12:49:59'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879772393845919745, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '閫�鍑烘垚鍔�', '2025-01-16 14:07:18'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879772691259822081, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-16 14:08:29'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1880068250163240961, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-17 09:42:55'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1880125700354629633, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-17 13:31:13'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881151813012987905, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-20 09:28:37'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881169051237523458, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-20 10:37:07'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881205061153497090, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-20 13:00:12'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881237617135624194, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-01-20 15:09:34'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887297598080798722, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-06 08:29:46'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887306824333250562, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-06 09:06:26'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887325321280999425, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-06 10:19:56'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887373399446900737, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-06 13:30:59'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887660933993271298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-07 08:33:32'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887731394574938113, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-07 13:13:31'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887779447218499586, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-07 16:24:28'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888022824246681602, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-08 08:31:34'); +INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888040195874217986, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '鍐呯綉IP', 'Chrome', 'OSX', '0', '鐧诲綍鎴愬姛', '2025-02-08 09:40:35'); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_menu +-- ---------------------------- +DROP TABLE IF EXISTS `sys_menu`; +CREATE TABLE `sys_menu` ( + `menu_id` bigint NOT NULL COMMENT '鑿滃崟ID', + `menu_name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鑿滃崟鍚嶇О', + `parent_id` bigint DEFAULT '0' COMMENT '鐖惰彍鍗旾D', + `order_num` int DEFAULT '0' COMMENT '鏄剧ず椤哄簭', + `path` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璺敱鍦板潃', + `component` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '缁勪欢璺緞', + `query_param` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '璺敱鍙傛暟', + `is_frame` int DEFAULT '1' COMMENT '鏄惁涓哄閾撅紙0鏄� 1鍚︼級', + `is_cache` int DEFAULT '0' COMMENT '鏄惁缂撳瓨锛�0缂撳瓨 1涓嶇紦瀛橈級', + `menu_type` char(1) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鑿滃崟绫诲瀷锛圡鐩綍 C鑿滃崟 F鎸夐挳锛�', + `visible` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鏄剧ず鐘舵�侊紙0鏄剧ず 1闅愯棌锛�', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鑿滃崟鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `perms` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鏉冮檺鏍囪瘑', + `icon` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '鑿滃崟鍥炬爣', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '澶囨敞', + PRIMARY KEY (`menu_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='鑿滃崟鏉冮檺琛�'; + +-- ---------------------------- +-- Records of sys_menu +-- ---------------------------- +BEGIN; +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '绯荤粺绠$悊', 0, 11, 'system', '', '', 1, 0, 'M', '0', '0', '', 'eos-icons:system-group', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:02', '绯荤粺绠$悊鐩綍'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '绯荤粺鐩戞帶', 0, 13, 'monitor', '', '', 1, 0, 'M', '0', '0', '', 'solar:monitor-bold-duotone', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:13', '绯荤粺鐩戞帶鐩綍'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '绯荤粺宸ュ叿', 0, 14, 'tool', '', '', 1, 0, 'M', '0', '0', '', 'mdi:tools', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:19', '绯荤粺宸ュ叿鐩綍'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'PLUS瀹樼綉', 0, 15, 'https://gitee.com/dromara/RuoYi-Vue-Plus', '', '', 0, 0, 'M', '0', '0', '', 'flat-color-icons:plus', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:25', 'RuoYi-Vue-Plus瀹樼綉鍦板潃'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '娴嬭瘯鑿滃崟', 0, 16, 'demo', '', '', 1, 0, 'M', '0', '0', '', 'devicon:vscode', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:41', '娴嬭瘯鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '绉熸埛绠$悊', 0, 12, 'tenant', '', '', 1, 0, 'M', '0', '0', '', 'ic:baseline-house', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:08', '绉熸埛绠$悊鐩綍'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '鐢ㄦ埛绠$悊', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'ph:user-duotone', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐢ㄦ埛绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '瑙掕壊绠$悊', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'eos-icons:role-binding-outlined', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瑙掕壊绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '鑿滃崟绠$悊', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'ic:sharp-menu', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鑿滃崟绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '閮ㄩ棬绠$悊', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'mingcute:department-line', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閮ㄩ棬绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '宀椾綅绠$悊', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'icon-park-outline:appointment', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '宀椾綅绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, '瀛楀吀绠$悊', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'fluent-mdl2:dictionary', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀛楀吀绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, '鍙傛暟璁剧疆', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'icon-park-twotone:setting-two', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍙傛暟璁剧疆鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, '閫氱煡鍏憡', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'fe:notice-push', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '閫氱煡鍏憡鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '鏃ュ織绠$悊', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'material-symbols:logo-dev-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鏃ュ織绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, '鍦ㄧ嚎鐢ㄦ埛', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'material-symbols:generating-tokens-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鍦ㄧ嚎鐢ㄦ埛鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, '缂撳瓨鐩戞帶', 2, 5, 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'devicon:redis-wordmark', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '缂撳瓨鐩戞帶鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, '浠g爜鐢熸垚', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'tabler:code', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '浠g爜鐢熸垚鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'Admin鐩戞帶', 2, 5, 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'devicon:spring-wordmark', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'Admin鐩戞帶鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '鏂囦欢绠$悊', 1, 10, 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'solar:folder-with-files-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鏂囦欢绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, '浠诲姟璋冨害涓績', 2, 6, 'snailjob', 'monitor/snailjob/index', '', 1, 0, 'C', '0', '0', 'monitor:snailjob:list', 'akar-icons:schedule', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'SnailJob鎺у埗鍙拌彍鍗�'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, '绉熸埛绠$悊', 6, 1, 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'bi:houses-fill', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绉熸埛绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (122, '绉熸埛濂楅绠$悊', 6, 2, 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'bx:package', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绉熸埛濂楅绠$悊鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, '瀹㈡埛绔鐞�', 1, 11, 'client', 'system/client/index', '', 1, 0, 'C', '0', '0', 'system:client:list', 'simple-icons:authy', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瀹㈡埛绔鐞嗚彍鍗�'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '鎿嶄綔鏃ュ織', 108, 1, 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'arcticons:one-hand-operation', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鎿嶄綔鏃ュ織鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '鐧诲綍鏃ュ織', 108, 2, 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'streamline:interface-login-dial-pad-finger-password-dial-pad-dot-finger', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '鐧诲綍鏃ュ織鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '鐢ㄦ埛鏌ヨ', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '鐢ㄦ埛鏂板', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '鐢ㄦ埛淇敼', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '鐢ㄦ埛鍒犻櫎', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '鐢ㄦ埛瀵煎嚭', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '鐢ㄦ埛瀵煎叆', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '閲嶇疆瀵嗙爜', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '瑙掕壊鏌ヨ', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '瑙掕壊鏂板', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '瑙掕壊淇敼', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '瑙掕壊鍒犻櫎', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '瑙掕壊瀵煎嚭', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '鑿滃崟鏌ヨ', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '鑿滃崟鏂板', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '鑿滃崟淇敼', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '鑿滃崟鍒犻櫎', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '閮ㄩ棬鏌ヨ', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '閮ㄩ棬鏂板', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '閮ㄩ棬淇敼', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '閮ㄩ棬鍒犻櫎', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '宀椾綅鏌ヨ', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '宀椾綅鏂板', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '宀椾綅淇敼', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '宀椾綅鍒犻櫎', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '宀椾綅瀵煎嚭', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '瀛楀吀鏌ヨ', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '瀛楀吀鏂板', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '瀛楀吀淇敼', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '瀛楀吀鍒犻櫎', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '瀛楀吀瀵煎嚭', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '鍙傛暟鏌ヨ', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '鍙傛暟鏂板', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '鍙傛暟淇敼', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '鍙傛暟鍒犻櫎', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '鍙傛暟瀵煎嚭', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '鍏憡鏌ヨ', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '鍏憡鏂板', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '鍏憡淇敼', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '鍏憡鍒犻櫎', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '鎿嶄綔鏌ヨ', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '鎿嶄綔鍒犻櫎', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '鏃ュ織瀵煎嚭', 500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '鐧诲綍鏌ヨ', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '鐧诲綍鍒犻櫎', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '鏃ュ織瀵煎嚭', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '鍦ㄧ嚎鏌ヨ', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '鎵归噺寮洪��', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '鍗曟潯寮洪��', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '璐︽埛瑙i攣', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '鐢熸垚鏌ヨ', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '鐢熸垚淇敼', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '鐢熸垚鍒犻櫎', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '瀵煎叆浠g爜', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '棰勮浠g爜', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '鐢熸垚浠g爜', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1061, '瀹㈡埛绔鐞嗘煡璇�', 123, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1062, '瀹㈡埛绔鐞嗘柊澧�', 123, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1063, '瀹㈡埛绔鐞嗕慨鏀�', 123, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1064, '瀹㈡埛绔鐞嗗垹闄�', 123, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1065, '瀹㈡埛绔鐞嗗鍑�', 123, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1500, '娴嬭瘯鍗曡〃', 5, 1, 'demo', 'demo/demo/index', '', 1, 0, 'C', '0', '0', 'demo:demo:list', 'lucide:table', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '娴嬭瘯鍗曡〃鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1501, '娴嬭瘯鍗曡〃鏌ヨ', 1500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1502, '娴嬭瘯鍗曡〃鏂板', 1500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1503, '娴嬭瘯鍗曡〃淇敼', 1500, 3, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1504, '娴嬭瘯鍗曡〃鍒犻櫎', 1500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1505, '娴嬭瘯鍗曡〃瀵煎嚭', 1500, 5, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1506, '娴嬭瘯鏍戣〃', 5, 1, 'tree', 'demo/tree/index', '', 1, 0, 'C', '0', '0', 'demo:tree:list', 'emojione:evergreen-tree', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '娴嬭瘯鏍戣〃鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1507, '娴嬭瘯鏍戣〃鏌ヨ', 1506, 1, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1508, '娴嬭瘯鏍戣〃鏂板', 1506, 2, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1509, '娴嬭瘯鏍戣〃淇敼', 1506, 3, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1510, '娴嬭瘯鏍戣〃鍒犻櫎', 1506, 4, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1511, '娴嬭瘯鏍戣〃瀵煎嚭', 1506, 5, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1600, '鏂囦欢鏌ヨ', 118, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1601, '鏂囦欢涓婁紶', 118, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1602, '鏂囦欢涓嬭浇', 118, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1603, '鏂囦欢鍒犻櫎', 118, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1606, '绉熸埛鏌ヨ', 121, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1607, '绉熸埛鏂板', 121, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1608, '绉熸埛淇敼', 121, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1609, '绉熸埛鍒犻櫎', 121, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1610, '绉熸埛瀵煎嚭', 121, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1611, '绉熸埛濂楅鏌ヨ', 122, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1612, '绉熸埛濂楅鏂板', 122, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1613, '绉熸埛濂楅淇敼', 122, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1614, '绉熸埛濂楅鍒犻櫎', 122, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1615, '绉熸埛濂楅瀵煎嚭', 122, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1620, '閰嶇疆鍒楄〃', 118, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:list', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1621, '閰嶇疆娣诲姞', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1622, '閰嶇疆缂栬緫', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1623, '閰嶇疆鍒犻櫎', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728962, '璁惧鍙拌处', 1876074027672731650, 1, 'ledger', 'eims/equ/index', NULL, 1, 0, 'C', '0', '0', 'eims:equ:list', 'mdi:keyboard-esc', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-06 10:31:18', '銆愯澶囧彴璐︺�戣彍鍗�'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728963, '銆愯澶囧彴璐︺�戞煡璇�', 1875349550770728962, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:query', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:43', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728964, '銆愯澶囧彴璐︺�戞柊澧�', 1875349550770728962, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:add', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:52', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728965, '銆愯澶囧彴璐︺�戜慨鏀�', 1875349550770728962, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:edit', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:58', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728966, '銆愯澶囧彴璐︺�戝垹闄�', 1875349550770728962, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:remove', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:02:04', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728967, '銆愯澶囧彴璐︺�戝鍑�', 1875349550770728962, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:export', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:02:10', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876074027672731650, '璁惧绠$悊', 0, 1, 'equ', '', NULL, 1, 0, 'M', '0', '0', NULL, '#', 103, 1, '2025-01-06 09:11:19', 1, '2025-01-06 10:31:00', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582849, '璁惧绫诲瀷', 1876074027672731650, 2, 'equType', 'eims/equ-type/index', NULL, 1, 0, 'C', '0', '0', 'eims:equType:list', '#', 103, 1, '2025-01-06 12:45:57', 1, '2025-01-06 13:30:31', '璁惧绫诲瀷鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582850, '璁惧绫诲瀷鏌ヨ', 1876127568837582849, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:query', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582851, '璁惧绫诲瀷鏂板', 1876127568837582849, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:add', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582852, '璁惧绫诲瀷淇敼', 1876127568837582849, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:edit', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582853, '璁惧绫诲瀷鍒犻櫎', 1876127568837582849, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:remove', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582854, '璁惧绫诲瀷瀵煎嚭', 1876127568837582849, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:export', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127297, '璇曚骇璁板綍', 1876074027672731650, 3, 'equTrial', 'eims/equ-trial/index', NULL, 1, 0, 'C', '0', '0', 'eims:equTrial:list', '#', 103, 1, '2025-01-09 12:55:03', 1, '2025-01-09 12:56:16', '璁惧璇曚骇璁板綍鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127298, '璁惧璇曚骇璁板綍鏌ヨ', 1877195885923127297, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:query', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127299, '璁惧璇曚骇璁板綍鏂板', 1877195885923127297, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:add', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127300, '璁惧璇曚骇璁板綍淇敼', 1877195885923127297, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:edit', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127301, '璁惧璇曚骇璁板綍鍒犻櫎', 1877195885923127297, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:remove', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127302, '璁惧璇曚骇璁板綍瀵煎嚭', 1877195885923127297, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:export', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752577, '鐘舵�佸彉鏇�', 1876074027672731650, 4, 'equStatu', 'eims/equ-statu/index', NULL, 1, 0, 'C', '0', '0', 'eims:equStatu:list', '#', 103, 1, '2025-01-14 11:00:03', 1, '2025-01-14 11:01:12', '璁惧鐘舵�佽褰曡彍鍗�'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752578, '璁惧鐘舵�佽褰曟煡璇�', 1879000339785752577, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:query', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752579, '璁惧鐘舵�佽褰曟柊澧�', 1879000339785752577, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:add', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752580, '璁惧鐘舵�佽褰曚慨鏀�', 1879000339785752577, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:edit', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752581, '璁惧鐘舵�佽褰曞垹闄�', 1879000339785752577, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:remove', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752582, '璁惧鐘舵�佽褰曞鍑�', 1879000339785752577, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:export', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733313, '璁惧鐩樼偣', 1876074027672731650, 5, 'inventory', 'eims/inventory/index', NULL, 1, 0, 'C', '0', '0', 'eims:inventory:list', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 15:55:50', '鐩樼偣鑿滃崟'); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733314, '鐩樼偣鏌ヨ', 1879762189070733313, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:query', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:31', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733315, '鐩樼偣鏂板', 1879762189070733313, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:add', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:38', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733316, '鐩樼偣淇敼', 1879762189070733313, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:edit', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:43', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733317, '鐩樼偣鍒犻櫎', 1879762189070733313, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:remove', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:52', ''); +INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733318, '鐩樼偣瀵煎嚭', 1879762189070733313, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:export', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:47', ''); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_notice +-- ---------------------------- +DROP TABLE IF EXISTS `sys_notice`; +CREATE TABLE `sys_notice` ( + `notice_id` bigint NOT NULL COMMENT '鍏憡ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `notice_title` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鍏憡鏍囬', + `notice_type` char(1) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鍏憡绫诲瀷锛�1閫氱煡 2鍏憡锛�', + `notice_content` longblob COMMENT '鍏憡鍐呭', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍏憡鐘舵�侊紙0姝e父 1鍏抽棴锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`notice_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='閫氱煡鍏憡琛�'; + +-- ---------------------------- +-- Records of sys_notice +-- ---------------------------- +BEGIN; +INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '娓╅Θ鎻愰啋锛�2018-07-01 鏂扮増鏈彂甯冨暒', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绠$悊鍛�'); +INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '缁存姢閫氱煡锛�2018-07-01 绯荤粺鍑屾櫒缁存姢', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '绠$悊鍛�'); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_oper_log +-- ---------------------------- +DROP TABLE IF EXISTS `sys_oper_log`; +CREATE TABLE `sys_oper_log` ( + `oper_id` bigint NOT NULL COMMENT '鏃ュ織涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `title` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '妯″潡鏍囬', + `business_type` int DEFAULT '0' COMMENT '涓氬姟绫诲瀷锛�0鍏跺畠 1鏂板 2淇敼 3鍒犻櫎锛�', + `method` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鏂规硶鍚嶇О', + `request_method` varchar(10) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璇锋眰鏂瑰紡', + `operator_type` int DEFAULT '0' COMMENT '鎿嶄綔绫诲埆锛�0鍏跺畠 1鍚庡彴鐢ㄦ埛 2鎵嬫満绔敤鎴凤級', + `oper_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎿嶄綔浜哄憳', + `dept_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '閮ㄩ棬鍚嶇О', + `oper_url` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璇锋眰URL', + `oper_ip` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '涓绘満鍦板潃', + `oper_location` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎿嶄綔鍦扮偣', + `oper_param` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璇锋眰鍙傛暟', + `json_result` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '杩斿洖鍙傛暟', + `status` int DEFAULT '0' COMMENT '鎿嶄綔鐘舵�侊紙0姝e父 1寮傚父锛�', + `error_msg` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '閿欒娑堟伅', + `oper_time` datetime DEFAULT NULL COMMENT '鎿嶄綔鏃堕棿', + `cost_time` bigint DEFAULT '0' COMMENT '娑堣�楁椂闂�', + PRIMARY KEY (`oper_id`), + KEY `idx_sys_oper_log_bt` (`business_type`), + KEY `idx_sys_oper_log_s` (`status`), + KEY `idx_sys_oper_log_ot` (`oper_time`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='鎿嶄綔鏃ュ織璁板綍'; + +-- ---------------------------- +-- Records of sys_oper_log +-- ---------------------------- +BEGIN; +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871795322491490306, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"棣栭〉\",\"orderNum\":1,\"path\":\"index\",\"component\":\"/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 13:49:16', 59); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871795362744225794, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":103,\"createBy\":null,\"createTime\":\"2024-12-25 13:49:16\",\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"棣栭〉\",\"orderNum\":0,\"path\":\"index\",\"component\":\"/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 13:49:25', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871799332388720642, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1871795322273386497\",\"menuName\":\"娴嬭瘯\",\"orderNum\":1,\"path\":\"1\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"bug\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 14:05:12', 18); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871799411027726337, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":103,\"createBy\":null,\"createTime\":\"2024-12-25 14:05:12\",\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871799332334194690\",\"parentId\":\"1871795322273386497\",\"menuName\":\"娴嬭瘯\",\"orderNum\":1,\"path\":\"1\",\"component\":\"/test\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"bug\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 14:05:31', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871838117914923010, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"绯荤粺绠$悊\",\"orderNum\":1,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"fluent:access-time-20-regular\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 16:39:19', 59); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871838765783896065, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"绯荤粺绠$悊\",\"orderNum\":1,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"eos-icons:system-group\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-25 16:41:54', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872089580725895170, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"sys_client\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-26 09:18:32', 64); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872089588539883522, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1872089580516179970\"}', '', 0, '', '2024-12-26 09:18:34', 87); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872096061605052418, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"棣栭〉\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2024-12-26 09:44:18', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875346276927713281, '000000', '鐢ㄦ埛绠$悊', 5, 'org.dromara.system.controller.system.SysUserController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/user/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":null,\"deptId\":null,\"userName\":null,\"nickName\":null,\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":null,\"status\":null,\"remark\":null,\"roleIds\":null,\"postIds\":null,\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '', 0, '', '2025-01-04 08:59:29', 1480); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349494923571201, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"sys_equipment\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 09:12:17', 108); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349505996533761, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1872089580516179970\"}', '', 0, '', '2025-01-04 09:12:19', 211); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349551072718850, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1875349494617387010\"}', '', 0, '', '2025-01-04 09:12:30', 77); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414505142386689, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"璁惧鍙拌处\",\"orderNum\":0,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:30:36', 28); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414611501547521, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"绯荤粺绠$悊\",\"orderNum\":11,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"eos-icons:system-group\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:02', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414636503793666, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":6,\"parentId\":0,\"menuName\":\"绉熸埛绠$悊\",\"orderNum\":12,\"path\":\"tenant\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"chart\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:08', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414660407132162, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":2,\"parentId\":0,\"menuName\":\"绯荤粺鐩戞帶\",\"orderNum\":13,\"path\":\"monitor\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"monitor\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:13', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414684323053569, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":3,\"parentId\":0,\"menuName\":\"绯荤粺宸ュ叿\",\"orderNum\":14,\"path\":\"tool\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"tool\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:19', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414707916013570, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":4,\"parentId\":0,\"menuName\":\"PLUS瀹樼綉\",\"orderNum\":15,\"path\":\"https://gitee.com/dromara/RuoYi-Vue-Plus\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"0\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"guide\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:25', 6); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414778195771393, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":5,\"parentId\":0,\"menuName\":\"娴嬭瘯鑿滃崟\",\"orderNum\":16,\"path\":\"demo\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"star\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:41', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414811750203393, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:31:49', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875420340168167425, '000000', '銆愯澶囧彴璐︺��', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/1000', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 13:53:47', 58); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875422122613149697, '000000', '銆愯澶囧彴璐︺��', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/1000', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 14:00:52', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875423644868677634, '000000', '銆愯澶囧彴璐︺��', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-04 14:06:55', 1519); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875460571919552513, '000000', '宀椾綅绠$悊', 2, 'org.dromara.system.controller.system.SysPostController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/post', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"postId\":1,\"deptId\":103,\"belongDeptId\":null,\"postCode\":\"ceo\",\"postName\":\"钁d簨闀縗",\"postCategory\":null,\"postSort\":1,\"status\":\"0\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 16:33:39', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875463790750081025, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":3000,\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":0,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 16:46:27', 27); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875463891719561218, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875463891686006786\",\"assetNo\":null,\"equName\":\"SMT-1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-04 16:46:51', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875706290181869569, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"鍝堝搱1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":105,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 08:50:03', 32); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875710833443573762, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"鍝堝搱1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 09:08:06', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875711980178870273, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"鍝堝搱1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 09:12:40', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875715920899444737, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"鍝堝搱1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":102,\"respPerson\":3,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 09:28:19', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875728296658964481, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"棣栭〉\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"mdi:workflow-outline\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 10:17:30', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875730271056269314, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"棣栭〉\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"akar-icons:airpods\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 10:25:21', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875731591666438146, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 10:30:36', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875737971378982914, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1871795322273386497', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":601,\"msg\":\"瀛樺湪瀛愯彍鍗�,涓嶅厑璁稿垹闄",\"data\":null}', 0, '', '2025-01-05 10:55:57', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875737998381912065, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1871799332334194690', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 10:56:03', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875738013057781761, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1871795322273386497', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 10:56:06', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875774501476732929, '000000', '瀛楀吀绫诲瀷', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/type', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"璁惧鐘舵�乗",\"dictType\":\"sys_equ_status\",\"remark\":\"璁惧鐘舵�乗"}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:21:06', 37); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775031070527489, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"鍏ュ浐\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:23:12', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775236968910849, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"璇曠敤\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":500,\"msg\":\"鏂板瀛楀吀鏁版嵁\'0\'澶辫触锛屽瓧鍏搁敭鍊煎凡瀛樺湪\",\"data\":null}', 0, '', '2025-01-05 13:24:01', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775264055726082, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":11,\"dictLabel\":\"璇曠敤\",\"dictValue\":\"11\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:24:08', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775292820262914, '000000', '瀛楀吀鏁版嵁', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775031024390146\",\"dictSort\":1,\"dictLabel\":\"鍏ュ浐\",\"dictValue\":\"1\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:24:15', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775323598065665, '000000', '瀛楀吀鏁版嵁', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775264009588738\",\"dictSort\":0,\"dictLabel\":\"璇曠敤\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:24:22', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775424894701569, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"杩佺Щ\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"warning\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:24:46', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775593304395778, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"鎶ュ簾\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 13:25:26', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875789723218317314, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":3000,\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":2,\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 14:21:35', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875789912935075841, '000000', '鐢ㄦ埛绠$悊', 2, 'org.dromara.system.controller.system.SysUserController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/user', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":3,\"deptId\":108,\"userName\":\"test\",\"nickName\":\"鏈儴闂ㄥ強浠ヤ笅 瀵嗙爜666666\",\"userType\":null,\"email\":\"\",\"phonenumber\":\"\",\"sex\":\"1\",\"status\":\"0\",\"remark\":null,\"roleIds\":[3],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 14:22:20', 97); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875790674570248193, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":3000,\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 14:25:22', 23); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875792888009416705, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"tempNo\":\"10010\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 14:34:10', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875795552952737794, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875463891686006786\",\"assetNo\":null,\"equName\":\"SMT-1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"3\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 14:44:45', 23); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875799585973166082, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"tempNo\":\"10010\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 15:00:47', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875799643082809345, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"鍝堝搱1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":108,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 15:01:00', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875807178368049153, '000000', '銆愯澶囧彴璐︺��', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/1875706290043457538', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 15:30:57', 48); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875807206037872642, '000000', '銆愯澶囧彴璐︺��', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/1875463891686006786', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 15:31:03', 6); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811115145977857, '000000', '銆愯澶囧彴璐︺��', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-05 15:46:35', 1529); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811346545729538, '000000', '鐢ㄦ埛绠$悊', 5, 'org.dromara.system.controller.system.SysUserController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/user/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":null,\"deptId\":null,\"userName\":null,\"nickName\":null,\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":null,\"status\":null,\"remark\":null,\"roleIds\":null,\"postIds\":null,\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '', 0, '', '2025-01-05 15:47:31', 134); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811877397835777, '000000', '銆愯澶囧彴璐︺��', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-05 15:49:37', 932); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875821314565058561, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"eims/equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 16:27:07', 27); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875826586968776706, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 16:48:04', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875827537662304258, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equipment', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"assetNo\":null,\"equName\":\"11\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-05 16:51:51', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876074027832115202, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"璁惧绠$悊\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 09:11:19', 39); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876074427251490818, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"ledger\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 09:12:54', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876084493077774338, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"modal\"},\"tableId\":\"1875349494617387010\",\"dataName\":\"master\",\"tableName\":\"sys_equipment\",\"tableComment\":\"璁惧鍙拌处\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquipment\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims.equipment\",\"moduleName\":\"eims\",\"businessName\":\"equipment\",\"functionName\":\"璁惧鍙拌处\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494789353473\",\"tableId\":\"1875349494617387010\",\"columnName\":\"equ_id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"EquId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494797742081\",\"tableId\":\"1875349494617387010\",\"columnName\":\"asset_no\",\"columnComment\":\"璧勪骇缂栧彿\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"assetNo\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"AssetNo\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494797742082\",\"tableId\":\"1875349494617387010\",\"columnName\":\"equ_name\",\"columnComment\":\"璁惧鍚嶇О\\n\",\"columnType\":\"varchar\",\"javaType\":\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 09:52:54', 61); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876086417655136257, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":2,\"path\":\"type\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:00:33', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876086912515899394, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876086417617387521\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":2,\"path\":\"type\",\"component\":\"eims/equipment-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:02:31', 18); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094082898485250, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876074027672731650\",\"parentId\":0,\"menuName\":\"璁惧绠$悊\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:31:00', 28); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094158941216770, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧鍙拌处\",\"orderNum\":1,\"path\":\"ledger\",\"component\":\"eims/equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:31:18', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094820915716098, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.SysEquController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876094820823441410\",\"assetNo\":null,\"equName\":\"鍝堝搱\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:33:56', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094833284718593, '000000', '銆愯澶囧彴璐︺��', 3, 'org.dromara.eims.controller.SysEquController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ/1876094820823441410', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:33:59', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094850435227650, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"assetNo\":null,\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 10:34:03', 35); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876104714662289410, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"sys_equ_type\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 11:13:15', 85); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876106010320543745, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"params\":{\"treeCode\":\"type_code\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1876104714398048258\",\"dataName\":\"master\",\"tableName\":\"sys_equ_type\",\"tableComment\":\"璁惧绫诲瀷\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims.equ\",\"moduleName\":\"eims\",\"businessName\":\"equType\",\"functionName\":\"璁惧绫诲瀷\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714481934338\",\"tableId\":\"1876104714398048258\",\"columnName\":\"equ_type_id\",\"columnComment\":\"绫诲瀷id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equTypeId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":false,\"capJavaField\":\"EquTypeId\",\"list\":true,\"pk\":true,\"edit\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714486128641\",\"tableId\":\"1876104714398048258\",\"columnName\":\"type_name\",\"columnComment\":\"绫诲瀷鍚嶇О\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"TypeName\",\"list\":true,\"pk\":false,\"edit\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714486128642\",\"tableId\":\"1876104714398048258\",\"columnName\":\"t', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 11:18:24', 47); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876127569265401858, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1876104714398048258\"}', '', 0, '', '2025-01-06 12:44:04', 116); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128212738744321, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":1,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":500,\"msg\":\"淇敼鑿滃崟\'璁惧绫诲瀷\'澶辫触锛岃彍鍗曞悕绉板凡瀛樺湪\",\"data\":null}', 0, '', '2025-01-06 12:46:37', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128294632529921, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876086417617387521', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 12:46:57', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128346386046977, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 12:47:09', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128439419904001, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 12:47:31', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876139257576591362, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧绫诲瀷\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equ-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 13:30:31', 32); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876146579795382274, '000000', '璁惧绫诲瀷', 5, 'org.dromara.eims.controller.SysEquTypeController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":null,\"typeName\":null,\"typeCode\":null,\"parentId\":null,\"orderNum\":null,\"menuType\":null,\"icon\":null,\"status\":null,\"remark\":null}', '', 0, '', '2025-01-06 13:59:36', 1407); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876152478559670274, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876152478484172802\",\"typeName\":null,\"typeCode\":null,\"parentId\":11,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:23:03', 32); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153837568765954, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153837229027329\",\"typeName\":\"娴嬭瘯1\",\"typeCode\":null,\"parentId\":0,\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:28:27', 79); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153868891828225, '000000', '璁惧绫诲瀷', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153837229027329\",\"typeName\":\"娴嬭瘯1\",\"typeCode\":null,\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:28:34', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153923560386562, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153923518443522\",\"typeName\":\"娴嬭瘯11\",\"typeCode\":null,\"parentId\":\"1876153837229027329\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:28:47', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153952505278465, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876153923518443522', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:28:54', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153981185929218, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153981135597569\",\"typeName\":\"娴嬭瘯111\",\"typeCode\":null,\"parentId\":\"1876153837229027329\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:01', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153993689149442, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876153837229027329', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:04', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154047569178625, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876154047523041281\",\"typeName\":\"娴嬭瘯11\",\"typeCode\":null,\"parentId\":\"1876153981135597569\",\"orderNum\":111,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:17', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154069245341698, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876153981135597569', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:22', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154080121171969, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876154047523041281', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:25', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154142062653442, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"娴嬭瘯1\",\"orderNum\":1,\"path\":\"1\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:39', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154184991354882, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876154142033293313\",\"menuName\":\"娴嬭瘯2\",\"orderNum\":2,\"path\":\"2\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:29:50', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154205606359042, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876154142033293313', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":601,\"msg\":\"瀛樺湪瀛愯彍鍗�,涓嶅厑璁稿垹闄",\"data\":null}', 0, '', '2025-01-06 14:29:55', 5); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154246374993921, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876154184928440322', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:30:04', 23); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154259259895809, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876154142033293313', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:30:07', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156502059069441, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156501861937153\",\"typeName\":\"娴嬭瘯1\",\"typeCode\":\"11\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:39:02', 39); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156551119843330, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156551069511682\",\"typeName\":\"娴嬭瘯瀛愮被1\",\"typeCode\":\"12\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:39:14', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156608418230273, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156608367898625\",\"typeName\":\"娴嬭瘯瀛愮被2\",\"typeCode\":\"2\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:39:27', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156648230563841, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156648184426498\",\"typeName\":\"娴嬭瘯3\",\"typeCode\":\"3\",\"parentId\":\"1876156551069511682\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:39:37', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156675929747457, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":601,\"msg\":\"瀛樺湪瀛愯彍鍗�,涓嶅厑璁稿垹闄",\"data\":null}', 0, '', '2025-01-06 14:39:44', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156693394829313, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876156551069511682', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":601,\"msg\":\"瀛樺湪瀛愯彍鍗�,涓嶅厑璁稿垹闄",\"data\":null}', 0, '', '2025-01-06 14:39:48', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156710931214338, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876156648184426498', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:39:52', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156733832114177, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":601,\"msg\":\"瀛樺湪瀛愯彍鍗�,涓嶅厑璁稿垹闄",\"data\":null}', 0, '', '2025-01-06 14:39:57', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156744728915970, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1876156608367898625', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:40:00', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156824294862850, '000000', '璁惧绫诲瀷', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156501861937153\",\"typeName\":\"娴嬭瘯1\",\"typeCode\":\"11\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 14:40:19', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876204236636016641, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.SysEquController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":11,\"assetNo\":null,\"equName\":\"鍝堝搱\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 17:48:43', 43); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876205697356910594, '000000', '璁惧绫诲瀷', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156551069511682\",\"typeName\":\"娴嬭瘯瀛愮被1\",\"typeCode\":\"12\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 17:54:31', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876206025678639106, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":3,\"assetNo\":null,\"equName\":\"鍝堝搱\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-06 17:55:49', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876521587176660993, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":31,\"assetNo\":null,\"equName\":\"鍝堝搱\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 14:49:45', 41); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876521615190417409, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equTypeId\":3,\"assetNo\":null,\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 14:49:52', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524597135040513, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728963\",\"parentId\":\"1875349550770728962\",\"menuName\":\"銆愯澶囧彴璐︺�戞煡璇",\"orderNum\":1,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:query\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 15:01:43', 21); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524636074958850, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728964\",\"parentId\":\"1875349550770728962\",\"menuName\":\"銆愯澶囧彴璐︺�戞柊澧瀄",\"orderNum\":2,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:add\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 15:01:52', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524660267704322, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728965\",\"parentId\":\"1875349550770728962\",\"menuName\":\"銆愯澶囧彴璐︺�戜慨鏀筡",\"orderNum\":3,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:edit\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 15:01:58', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524687803310082, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728966\",\"parentId\":\"1875349550770728962\",\"menuName\":\"銆愯澶囧彴璐︺�戝垹闄",\"orderNum\":4,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:remove\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 15:02:04', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524709890514945, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728967\",\"parentId\":\"1875349550770728962\",\"menuName\":\"銆愯澶囧彴璐︺�戝鍑篭",\"orderNum\":5,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:export\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-07 15:02:10', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876800106842607617, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:16:29', 38); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876801891950968833, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:23:35', 63); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802441148940290, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:25:46', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802697982951425, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1875349550770728962\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:26:47', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802896860069890, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1875349550770728962\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:27:35', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876803378139676673, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"娴嬭瘯\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:29:29', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876804843969232898, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876800106687418370', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:35:19', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876805354164371457, '000000', '鑿滃崟绠$悊', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧璇︽儏\",\"orderNum\":3,\"path\":\"detail\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 09:37:20', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876811923753111554, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧璇︽儏\",\"orderNum\":3,\"path\":\"detail/:equId\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 10:03:27', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876812630833074177, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧璇︽儏\",\"orderNum\":3,\"path\":\"detail/${equId}\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 10:06:15', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876813535980654593, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧璇︽儏\",\"orderNum\":3,\"path\":\"detail/:equId\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 10:09:51', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876814781248540673, '000000', '鑿滃崟绠$悊', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu/1876805354114039810', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-08 10:14:48', 21); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877155581186658305, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 08:49:01', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877155664481341442, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 08:49:21', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877165636468461570, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:28:58', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166050412711938, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂1\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:30:37', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166283850895361, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:31:33', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166313353629698, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:31:40', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166979992113154, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:34:19', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877168818972119042, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:41:37', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877168875960127489, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:41:51', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877169564769701889, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 09:44:35', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877189886831087617, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"sys_equ_trial\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 11:05:20', 94); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877195862355333121, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1877189886592012289\",\"dataName\":\"master\",\"tableName\":\"sys_equ_trial\",\"tableComment\":\"璁惧璇曚骇璁板綍\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquTrial\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"equTrial\",\"functionName\":\"璁惧璇曚骇璁板綍\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886730424322\",\"tableId\":\"1877189886592012289\",\"columnName\":\"trial_id\",\"columnComment\":\"璇曠敤璁板綍id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"trialId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"capJavaField\":\"TrialId\",\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886734618625\",\"tableId\":\"1877189886592012289\",\"columnName\":\"equ_id\",\"columnComment\":\"璁惧id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"EquId\",\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886734618626\",\"tableId\":\"1877189886592012289\",\"columnName\":\"trial_num\",\"columnComment\":\"璇曚骇鏁伴噺\",\"columnType\":\"int\",\"javaType\":\"Long\",\"j', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 11:29:05', 47); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877195886686490625, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1877189886592012289\"}', '', 0, '', '2025-01-09 11:29:11', 198); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877217717132840962, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1877195885923127297\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璇曚骇璁板綍\",\"orderNum\":3,\"path\":\"equTrial\",\"component\":\"eims/equTrial/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equTrial:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 12:55:55', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877217802835054593, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1877195885923127297\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璇曚骇璁板綍\",\"orderNum\":3,\"path\":\"equTrial\",\"component\":\"eims/equ-trial/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equTrial:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-09 12:56:16', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878003170303811586, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-11 16:57:02', 46); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878003202205687810, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-11 16:57:10', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878245155115450370, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 08:58:36', 101); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267414056054785, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 10:27:03', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267507685502978, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 10:27:25', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267540443017217, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 10:27:33', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267660123287554, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 10:28:01', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311101444157442, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":3,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:20:39', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311141206159362, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:20:48', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311855470964737, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311855408050177\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-12\",\"proGoodNum\":100,\"proGoodRate\":100,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"00:00:00\",\"endTime\":\"01:00:00\",\"runTime\":\"04:00:00\",\"stopTime\":\"01:00:00\",\"planRunTime\":\"06:00:00\",\"debugHistory\":\"娴嬭瘯\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:23:38', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311958101389314, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311958051057666\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:24:03', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311967765065729, '000000', '璁惧璇曚骇璁板綍', 3, 'org.dromara.eims.controller.SysEquTrialController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial/1878311958051057666', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:24:05', 21); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311984634556418, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311984580030466\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:24:09', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878312029945622530, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878312029899485185\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-12 13:24:20', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878607584723030017, '000000', '璁惧璇曚骇璁板綍', 3, 'org.dromara.eims.controller.SysEquTrialController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial/1878311984580030466,1878312029899485185', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 08:58:46', 32); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878607596630659073, '000000', '璁惧璇曚骇璁板綍', 5, 'org.dromara.eims.controller.SysEquTrialController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":null,\"equId\":null,\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '', 0, '', '2025-01-13 08:58:49', 1260); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677321863745538, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11\",\"proGoodNum\":951,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 13:35:52', 21); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677377044008961, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311855408050177\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-12\",\"proGoodNum\":100,\"proGoodRate\":100,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"00:00:00\",\"endTime\":\"01:00:00\",\"runTime\":\"04:00:00\",\"stopTime\":\"01:00:00\",\"planRunTime\":\"06:00:00\",\"debugHistory\":\"娴嬭瘯\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 13:36:05', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677895615172610, '000000', '璁惧璇曚骇璁板綍', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11\",\"proGoodNum\":951,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.娴嬭瘯bug\\n2.鍝堝搱鍝堝搱\\n3.鍛靛懙鍛礬",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 13:38:09', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878695098980847617, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878695098922127361\",\"equId\":1000,\"trialNum\":1,\"trialDate\":\"2025-01-13\",\"proGoodNum\":1,\"proGoodRate\":1,\"operatorDept\":null,\"operatorId\":null,\"startTime\":\"00:04:00\",\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 14:46:31', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878715702979153921, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878715702941405185\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-13\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:08:23', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716769448054786, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716769359974402\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-01\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:12:37', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716793686937602, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716793649188865\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-30\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:12:43', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716820295602177, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716820266242049\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-02\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:12:49', 6); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716848296775681, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716848254832642\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-03\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:12:56', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716874725085186, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716874670559233\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-16\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:13:02', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716907281272833, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716907243524098\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-03\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:13:10', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716944073707521, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716944031764482\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-19\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-13 16:13:19', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878978689841315841, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equCode\":null,\"equTypeId\":3,\"assetNo\":\"1002\",\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 09:33:24', 22); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878978762536992770, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"1001\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 09:33:41', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878984898598215681, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equCode\":\"1\",\"equTypeId\":3,\"assetNo\":\"1002\",\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 09:58:04', 22); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988394437390337, '000000', '銆愯澶囧彴璐︺��', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1878988394319949826\",\"equCode\":\"10000\",\"equTypeId\":1,\"assetNo\":\"123456\",\"equName\":\"娴嬭瘯1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-14\",\"status\":\"0\",\"location\":\"1鍙疯溅闂碶",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-14\",\"trialDate\":\"2025-01-14\",\"planAcceptDate\":\"2025-01-14\",\"actualAcceptDate\":\"2025-01-14\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-14\",\"serviceLife\":10}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:11:58', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988423835267073, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1878988394319949826\",\"equCode\":\"10000\",\"equTypeId\":1,\"assetNo\":\"123456\",\"equName\":\"娴嬭瘯11\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-14\",\"status\":\"0\",\"location\":\"1鍙疯溅闂碶",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-14\",\"trialDate\":\"2025-01-14\",\"planAcceptDate\":\"2025-01-14\",\"actualAcceptDate\":\"2025-01-14\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-14\",\"serviceLife\":10}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:12:05', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988535894487042, '000000', '璁惧绫诲瀷', 1, 'org.dromara.eims.controller.EimsEquTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1878988535865126913\",\"typeName\":\"娴嬭瘯2\",\"typeCode\":\"12\",\"parentId\":0,\"orderNum\":10,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:12:32', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988564168290306, '000000', '璁惧绫诲瀷', 3, 'org.dromara.eims.controller.EimsEquTypeController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equType/1878988535865126913', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:12:38', 23); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988619893813250, '000000', '璁惧璇曚骇璁板綍', 1, 'org.dromara.eims.controller.EimsEquTrialController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equTrial', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878988619851870210\",\"equId\":\"1878988394319949826\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:12:52', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878991383705198593, '000000', 'OSS瀵硅薄瀛樺偍', 1, 'org.dromara.system.controller.system.SysOssController.upload()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/resource/oss/upload', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '', '', 1, '鍒ゆ柇Bucket鏄惁瀛樺湪澶辫触锛岃鏍稿閰嶇疆淇℃伅:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-01-14 10:23:51', 7097); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878998727885365249, '000000', '浠g爜鐢熸垚', 3, 'org.dromara.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/1872089580516179970,1875349494617387010,1876104714398048258,1877189886592012289', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:53:01', 50); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878998754510807041, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"eims_equ_statu\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:53:08', 105); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878999481576628225, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1878998754225594370\",\"dataName\":\"master\",\"tableName\":\"eims_equ_statu\",\"tableComment\":\"璁惧鐘舵�佽褰曡〃\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsEquStatu\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"equStatu\",\"functionName\":\"璁惧鐘舵�佽褰昞",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754393366529\",\"tableId\":\"1878998754225594370\",\"columnName\":\"equ_statu_id\",\"columnComment\":\"璁惧鐘舵�佽褰昳d\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equStatuId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":false,\"capJavaField\":\"EquStatuId\",\"pk\":true,\"edit\":true,\"list\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754401755138\",\"tableId\":\"1878998754225594370\",\"columnName\":\"equ_id\",\"columnComment\":\"璁惧id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"select\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"EquId\",\"pk\":false,\"edit\":true,\"list\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754405949441\",\"tableId\":\"1878998754225594370\",\"columnName\":\"before_change\",\"columnComment\":\"鍙樻洿鍓嶇姸鎬乗",\"columnType\":\"cha', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 10:56:01', 84); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000340775608322, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1878998754225594370\"}', '', 0, '', '2025-01-14 10:59:26', 238); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000710574809089, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879000339785752577\",\"parentId\":\"1876074027672731650\",\"menuName\":\"鐘舵�佸彉鏇碶",\"orderNum\":4,\"path\":\"equStatu\",\"component\":\"eims/equStatu/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equStatu:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 11:00:54', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000783358566402, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879000339785752577\",\"parentId\":\"1876074027672731650\",\"menuName\":\"鐘舵�佸彉鏇碶",\"orderNum\":4,\"path\":\"equStatu\",\"component\":\"eims/equ-statu/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equStatu:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 11:01:12', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879078207744135169, '000000', '璁惧鐘舵�佽褰�', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879078207500865538\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-01-14 16:08:36\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-14 16:08:51', 52); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879333371721887746, '000000', '璁惧鐘舵�佽褰�', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879333371604447234\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:02:33\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"娴嬭瘯\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 09:02:47', 23); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879334927879974914, '000000', '璁惧鐘舵�佽褰�', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu/1879333371604447234', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 09:08:58', 40); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879335212543193089, '000000', '璁惧鐘舵�佽褰�', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879335212484472833\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:09:50\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"娴嬭瘯娴嬭瘯\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 09:10:06', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350376592134146, '000000', '璁惧鐘舵�佽褰�', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350376495665154\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 10:10:10\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 10:10:21', 18); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350533433937922, '000000', '璁惧鐘舵�佽褰�', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350533371023362\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 10:10:33\",\"changeUser\":4,\"userDept\":100,\"changeDesc\":\"娴嬭瘯\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 10:10:58', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350573875417089, '000000', '璁惧鐘舵�佽褰�', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879078207500865538\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"2\",\"changeDate\":\"2025-01-14 16:08:36\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 10:11:08', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350632918634498, '000000', '璁惧鐘舵�佽褰�', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350533371023362\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-01-15 10:10:33\",\"changeUser\":4,\"userDept\":100,\"changeDesc\":\"娴嬭瘯\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 10:11:22', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879426478136184834, '000000', '璁惧鐘舵�佽褰�', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879335212484472833\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:09:50\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-15 15:12:45', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879693813304627202, '000000', '璁惧鐘舵�佽褰�', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equStatu/1879350533371023362', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 08:55:03', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879758313013743617, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"eims_inventory\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 13:11:21', 112); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759051941056513, '000000', '浠g爜鐢熸垚', 3, 'org.dromara.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/1879758312694976513', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 13:14:17', 22); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759150792413185, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"eims_inventory\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 13:14:40', 70); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759964374142977, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1879759150687555586\",\"dataName\":\"master\",\"tableName\":\"eims_inventory\",\"tableComment\":\"鐩樼偣琛╘",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInventory\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.equ\",\"moduleName\":\"equ\",\"businessName\":\"inventory\",\"functionName\":\"鐩樼偣\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150742081538\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_id\",\"columnComment\":\"鐩樼偣id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"inventoryId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"query\":false,\"increment\":true,\"capJavaField\":\"InventoryId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150742081539\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_code\",\"columnComment\":\"鐩樼偣鍗曞彿\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"inventoryCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"query\":true,\"increment\":true,\"capJavaField\":\"InventoryCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150746275841\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_name\",\"columnComment\":\"鐩樼偣鍚嶇О\",\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 13:17:54', 37); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879762189813125122, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1879759150687555586\"}', '', 0, '', '2025-01-16 13:26:45', 194); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772912895234050, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733313\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧鐩樼偣\",\"orderNum\":1,\"path\":\"inventory\",\"component\":\"eims/inventory/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:22', 24); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772951130509313, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733314\",\"parentId\":\"1879762189070733313\",\"menuName\":\"鐩樼偣鏌ヨ\",\"orderNum\":1,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:query\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:31', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772979714691073, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733315\",\"parentId\":\"1879762189070733313\",\"menuName\":\"鐩樼偣鏂板\",\"orderNum\":2,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:add\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:38', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773002003222529, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733316\",\"parentId\":\"1879762189070733313\",\"menuName\":\"鐩樼偣淇敼\",\"orderNum\":3,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:edit\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:43', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773021590622209, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733318\",\"parentId\":\"1879762189070733313\",\"menuName\":\"鐩樼偣瀵煎嚭\",\"orderNum\":5,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:export\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:47', 14); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773040523710465, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733317\",\"parentId\":\"1879762189070733313\",\"menuName\":\"鐩樼偣鍒犻櫎\",\"orderNum\":4,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:remove\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 14:09:52', 12); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879799706221559810, '000000', '鑿滃崟绠$悊', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/menu', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733313\",\"parentId\":\"1876074027672731650\",\"menuName\":\"璁惧鐩樼偣\",\"orderNum\":5,\"path\":\"inventory\",\"component\":\"eims/inventory/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 15:55:50', 48); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879806294407856130, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"娴嬭瘯1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-16 16:22:00', 80); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880071851472347138, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-17 09:57:14', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880131864597389313, '000000', '瀛楀吀绫诲瀷', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/type', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"鐩樼偣鐘舵�乗",\"dictType\":\"inventory_statu\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-17 13:55:42', 26); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880132039369842689, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"鐩樼偣涓璡",\"dictValue\":\"0\",\"dictType\":\"inventory_statu\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-17 13:56:24', 28); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880132101525233666, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"鐩樼偣缁撴潫\",\"dictValue\":\"1\",\"dictType\":\"inventory_statu\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-17 13:56:39', 45); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1881205175116931074, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"娴嬭瘯2\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-01-20 13:00:40', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887298054450434049, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-06 08:31:35', 20); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887298098813587457, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-06 08:31:46', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887326259886542850, '000000', '鐩樼偣', 5, 'org.dromara.eims.controller.EimsInventoryController.export()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory/export', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":null,\"inventoryCode\":null,\"inventoryName\":null,\"inventoryUser\":null,\"userDept\":null,\"startDate\":null,\"endDate\":null,\"status\":null,\"remark\":null}', '', 0, '', '2025-02-06 10:23:40', 1422); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887329735047761922, '000000', '浠g爜鐢熸垚', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '\"eims_inventory_detail\" \"master\"', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-06 10:37:28', 92); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887330386704191489, '000000', '浠g爜鐢熸垚', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"params\":{\"parentMenuId\":\"1879762189070733313\",\"popupComponent\":\"drawer\"},\"tableId\":\"1887329734783520770\",\"dataName\":\"master\",\"tableName\":\"eims_inventory_detail\",\"tableComment\":\"鐩樼偣鏄庣粏琛╘",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInventoryDetail\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inventoryDetail\",\"functionName\":\"鐩樼偣鏄庣粏\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734955487233\",\"tableId\":\"1887329734783520770\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":true,\"edit\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734963875841\",\"tableId\":\"1887329734783520770\",\"columnName\":\"inventory_id\",\"columnComment\":\"鐩樼偣id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"inventoryId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":false,\"edit\":true,\"capJavaField\":\"InventoryId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734963875842\",\"tableId\":\"1887329734783520770\",\"columnName\":\"equ_id\",\"columnComment\":\"璁惧id\",\"columnType\":\"bigint\",\"java', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-06 10:40:04', 25); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887330412079730690, '000000', '浠g爜鐢熸垚', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '鐮斿彂閮ㄩ棬', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"tableIdStr\":\"1887329734783520770\"}', '', 0, '', '2025-02-06 10:40:10', 55); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887673874620682241, '000000', '瑙掕壊绠$悊', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/role', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"浠呮湰浜篭",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 09:24:58', 107); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887677409365078018, '000000', '瑙掕壊绠$悊', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/role', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"浠呮湰浜篭",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 09:39:00', 73); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887678824338698242, '000000', '瑙掕壊绠$悊', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/role', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"浠呮湰浜篭",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 09:44:38', 42060); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887678847168294914, '000000', '瑙掕壊绠$悊', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/role', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"浠呮湰浜篭",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,1500,1506,5,4],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 09:44:43', 41); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887687487623393282, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"equTypesList\":null,\"equStatusList\":null,\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:19:03', 64); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887688273443024898, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":[\"0\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:22:11', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692077194407937, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:37:17', 11); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692108244840449, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:37:25', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692131019911170, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"娴嬭瘯1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:37:30', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692714116247553, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"娴嬭瘯2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":null,\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:39:49', 27); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692747276414978, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"娴嬭瘯2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:39:57', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887694527020265474, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887694526953156609\",\"inventoryCode\":\"PD333333\",\"inventoryName\":\"娴嬭瘯3\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:47:02', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887694978583228418, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887694978503536641\",\"inventoryCode\":\"PD444444\",\"inventoryName\":\"娴嬭瘯4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 10:48:49', 16); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887731565576712194, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887731565534769154\",\"inventoryCode\":\"P1\",\"inventoryName\":\"鐩樼偣1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"32\"],\"equStatusList\":[\"2\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:14:12', 9); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887731623189671937, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887731565534769154\",\"inventoryCode\":\"P1\",\"inventoryName\":\"鐩樼偣1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"32\",\"31\",\"3\"],\"equStatusList\":[\"2\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:14:26', 10); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887733565278253058, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":0,\"assetNo\":\"1001\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:22:09', 39); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887733609901453313, '000000', '銆愯澶囧彴璐︺��', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/equ', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"1001\",\"equName\":\"1#璐寸墖鏈�1\",\"modelNo\":\"E300\",\"madeIn\":\"涓婃捣鍏板疂\",\"ratedPower\":\"3000\",\"plateInfo\":\"鍖椾含灏忕背\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"鍏板疂1鍙疯溅闂碶",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:22:20', 7); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887740263552380930, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887740263086813185\",\"inventoryCode\":\"P2\",\"inventoryName\":\"鐩樼偣2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":4,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:48:46', 126); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887740498571816961, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887740498433404929\",\"inventoryCode\":\"P3\",\"inventoryName\":\"鐩樼偣3\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":3,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:49:42', 32); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887741266808926210, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"鐩樼偣4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:52:45', 15); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742268547133441, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"鐩樼偣4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:56:44', 21); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742699360874498, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"鐩樼偣4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:58:27', 37320); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742714691055617, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"鐩樼偣4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 13:58:30', 19); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887747169754935297, '000000', '鐩樼偣', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory/1887741266746011649', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 14:16:13', 77); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887747440316903425, '000000', '鐩樼偣', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory/1879806293967454210,1881205174991101953,1887694526953156609,1887694978503536641,1887731565534769154,1887740263086813185,1887740498433404929', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 14:17:17', 13); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887748053461233665, '000000', '鐩樼偣', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"鐩樼偣1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 14:19:43', 37); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887754967263866881, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"鐩樼偣1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 14:47:12', 17); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887754984632479746, '000000', '鐩樼偣', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '鐮斿彂閮ㄩ棬', '/eims/inventory', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"鐩樼偣1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-07 14:47:16', 8); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888049932103692290, '000000', '瀛楀吀绫诲瀷', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/type', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"鐩樼偣鏄庣粏鐘舵�乗",\"dictType\":\"inventory_detail_statu\",\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-08 10:19:17', 41); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888050111636680706, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"鏈洏\",\"dictValue\":\"0\",\"dictType\":\"inventory_detail_statu\",\"cssClass\":null,\"listClass\":\"red\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-08 10:20:00', 33); +INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888050166741446658, '000000', '瀛楀吀鏁版嵁', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '鐮斿彂閮ㄩ棬', '/system/dict/data', '0:0:0:0:0:0:0:1', '鍐呯綉IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"宸茬洏\",\"dictValue\":\"1\",\"dictType\":\"inventory_detail_statu\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"鎿嶄綔鎴愬姛\",\"data\":null}', 0, '', '2025-02-08 10:20:13', 28); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_oss +-- ---------------------------- +DROP TABLE IF EXISTS `sys_oss`; +CREATE TABLE `sys_oss` ( + `oss_id` bigint NOT NULL COMMENT '瀵硅薄瀛樺偍涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `file_name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '鏂囦欢鍚�', + `original_name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '鍘熷悕', + `file_suffix` varchar(10) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '鏂囦欢鍚庣紑鍚�', + `url` varchar(500) COLLATE utf8mb4_general_ci NOT NULL COMMENT 'URL鍦板潃', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `create_by` bigint DEFAULT NULL COMMENT '涓婁紶浜�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊浜�', + `service` varchar(20) COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'minio' COMMENT '鏈嶅姟鍟�', + PRIMARY KEY (`oss_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='OSS瀵硅薄瀛樺偍琛�'; + +-- ---------------------------- +-- Records of sys_oss +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for sys_oss_config +-- ---------------------------- +DROP TABLE IF EXISTS `sys_oss_config`; +CREATE TABLE `sys_oss_config` ( + `oss_config_id` bigint NOT NULL COMMENT '涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `config_key` varchar(20) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '閰嶇疆key', + `access_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT 'accessKey', + `secret_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '绉橀挜', + `bucket_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '妗跺悕绉�', + `prefix` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鍓嶇紑', + `endpoint` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '璁块棶绔欑偣', + `domain` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鑷畾涔夊煙鍚�', + `is_https` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '鏄惁https锛圷=鏄�,N=鍚︼級', + `region` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鍩�', + `access_policy` char(1) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1' COMMENT '妗舵潈闄愮被鍨�(0=private 1=public 2=custom)', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '1' COMMENT '鏄惁榛樿锛�0=鏄�,1=鍚︼級', + `ext1` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎵╁睍瀛楁', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`oss_config_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='瀵硅薄瀛樺偍閰嶇疆琛�'; + +-- ---------------------------- +-- Records of sys_oss_config +-- ---------------------------- +BEGIN; +INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL); +INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL); +INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL); +INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1250000000', '', 'cos.ap-beijing.myqcloud.com', '', 'N', 'ap-beijing', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL); +INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_post +-- ---------------------------- +DROP TABLE IF EXISTS `sys_post`; +CREATE TABLE `sys_post` ( + `post_id` bigint NOT NULL COMMENT '宀椾綅ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `dept_id` bigint NOT NULL COMMENT '閮ㄩ棬id', + `post_code` varchar(64) COLLATE utf8mb4_general_ci NOT NULL COMMENT '宀椾綅缂栫爜', + `post_category` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '宀椾綅绫诲埆缂栫爜', + `post_name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '宀椾綅鍚嶇О', + `post_sort` int NOT NULL COMMENT '鏄剧ず椤哄簭', + `status` char(1) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='宀椾綅淇℃伅琛�'; + +-- ---------------------------- +-- Records of sys_post +-- ---------------------------- +BEGIN; +INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'ceo', NULL, '钁d簨闀�', 1, '0', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 16:33:39', ''); +INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 100, 'se', NULL, '椤圭洰缁忕悊', 2, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 100, 'hr', NULL, '浜哄姏璧勬簮', 3, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 100, 'user', NULL, '鏅�氬憳宸�', 4, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_role +-- ---------------------------- +DROP TABLE IF EXISTS `sys_role`; +CREATE TABLE `sys_role` ( + `role_id` bigint NOT NULL COMMENT '瑙掕壊ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `role_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '瑙掕壊鍚嶇О', + `role_key` varchar(100) COLLATE utf8mb4_general_ci NOT NULL COMMENT '瑙掕壊鏉冮檺瀛楃涓�', + `role_sort` int NOT NULL COMMENT '鏄剧ず椤哄簭', + `data_scope` char(1) COLLATE utf8mb4_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) COLLATE utf8mb4_general_ci NOT NULL COMMENT '瑙掕壊鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`role_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='瑙掕壊淇℃伅琛�'; + +-- ---------------------------- +-- Records of sys_role +-- ---------------------------- +BEGIN; +INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '瓒呯骇绠$悊鍛�', 'superadmin', 1, '1', 1, 1, '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '瓒呯骇绠$悊鍛�'); +INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '鏈儴闂ㄥ強浠ヤ笅', 'test1', 3, '4', 1, 1, '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, ''); +INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', '浠呮湰浜�', 'test2', 4, '5', 1, 1, '0', '0', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-07 09:44:43', ''); +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_general_ci COMMENT='瑙掕壊鍜岄儴闂ㄥ叧鑱旇〃'; + +-- ---------------------------- +-- Records of sys_role_dept +-- ---------------------------- +BEGIN; +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_general_ci COMMENT='瑙掕壊鍜岃彍鍗曞叧鑱旇〃'; + +-- ---------------------------- +-- Records of sys_role_menu +-- ---------------------------- +BEGIN; +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 5); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 100); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 101); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 102); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 103); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 104); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 105); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 106); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 107); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 108); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 500); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 501); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1001); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1002); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1003); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1004); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1005); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1006); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1007); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1008); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1009); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1010); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1011); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1012); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1013); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1014); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1015); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1016); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1017); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1018); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1019); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1020); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1021); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1022); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1023); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1024); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1025); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1026); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1027); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1028); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1029); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1030); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1031); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1032); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1033); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1034); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1035); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1036); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1037); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1038); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1039); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1040); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1041); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1042); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1043); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1044); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1045); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1500); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1501); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1502); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1503); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1504); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1505); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1506); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1507); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1508); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1509); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1510); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1511); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 4); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 5); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1500); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1501); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1502); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1503); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1504); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1505); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1506); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1507); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1508); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1509); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1510); +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1511); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_social +-- ---------------------------- +DROP TABLE IF EXISTS `sys_social`; +CREATE TABLE `sys_social` ( + `id` bigint NOT NULL COMMENT '涓婚敭', + `user_id` bigint NOT NULL COMMENT '鐢ㄦ埛ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '绉熸埛id', + `auth_id` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '骞冲彴+骞冲彴鍞竴id', + `source` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐢ㄦ埛鏉ユ簮', + `open_id` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '骞冲彴缂栧彿鍞竴id', + `user_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐧诲綍璐﹀彿', + `nick_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐢ㄦ埛鏄电О', + `email` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐢ㄦ埛閭', + `avatar` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '澶村儚鍦板潃', + `access_token` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐢ㄦ埛鐨勬巿鏉冧护鐗�', + `expire_in` int DEFAULT NULL COMMENT '鐢ㄦ埛鐨勬巿鏉冧护鐗岀殑鏈夋晥鏈燂紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `refresh_token` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍒锋柊浠ょ墝锛岄儴鍒嗗钩鍙板彲鑳芥病鏈�', + `access_code` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '骞冲彴鐨勬巿鏉冧俊鎭紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `union_id` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢ㄦ埛鐨� unionid', + `scope` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鎺堜簣鐨勬潈闄愶紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `token_type` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '涓埆骞冲彴鐨勬巿鏉冧俊鎭紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `id_token` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'id token锛岄儴鍒嗗钩鍙板彲鑳芥病鏈�', + `mac_algorithm` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '灏忕背骞冲彴鐢ㄦ埛鐨勯檮甯﹀睘鎬э紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `mac_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '灏忕背骞冲彴鐢ㄦ埛鐨勯檮甯﹀睘鎬э紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `code` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鐢ㄦ埛鐨勬巿鏉僣ode锛岄儴鍒嗗钩鍙板彲鑳芥病鏈�', + `oauth_token` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'Twitter骞冲彴鐢ㄦ埛鐨勯檮甯﹀睘鎬э紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `oauth_token_secret` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'Twitter骞冲彴鐢ㄦ埛鐨勯檮甯﹀睘鎬э紝閮ㄥ垎骞冲彴鍙兘娌℃湁', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='绀句細鍖栧叧绯昏〃'; + +-- ---------------------------- +-- Records of sys_social +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for sys_tenant +-- ---------------------------- +DROP TABLE IF EXISTS `sys_tenant`; +CREATE TABLE `sys_tenant` ( + `id` bigint NOT NULL COMMENT 'id', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci NOT NULL COMMENT '绉熸埛缂栧彿', + `contact_user_name` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鑱旂郴浜�', + `contact_phone` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鑱旂郴鐢佃瘽', + `company_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '浼佷笟鍚嶇О', + `license_number` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '缁熶竴绀句細淇$敤浠g爜', + `address` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍦板潃', + `intro` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '浼佷笟绠�浠�', + `domain` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍩熷悕', + `remark` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + `package_id` bigint DEFAULT NULL COMMENT '绉熸埛濂楅缂栧彿', + `expire_time` datetime DEFAULT NULL COMMENT '杩囨湡鏃堕棿', + `account_count` int DEFAULT '-1' COMMENT '鐢ㄦ埛鏁伴噺锛�-1涓嶉檺鍒讹級', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '绉熸埛鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='绉熸埛琛�'; + +-- ---------------------------- +-- Records of sys_tenant +-- ---------------------------- +BEGIN; +INSERT INTO `sys_tenant` (`id`, `tenant_id`, `contact_user_name`, `contact_phone`, `company_name`, `license_number`, `address`, `intro`, `domain`, `remark`, `package_id`, `expire_time`, `account_count`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '000000', '绠$悊缁�', '15888888888', 'XXX鏈夐檺鍏徃', NULL, NULL, '澶氱鎴烽�氱敤鍚庡彴绠$悊绠$悊绯荤粺', NULL, NULL, NULL, NULL, -1, '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_tenant_package +-- ---------------------------- +DROP TABLE IF EXISTS `sys_tenant_package`; +CREATE TABLE `sys_tenant_package` ( + `package_id` bigint NOT NULL COMMENT '绉熸埛濂楅id', + `package_name` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '濂楅鍚嶇О', + `menu_ids` varchar(3000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍏宠仈鑿滃崟id', + `remark` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '鑿滃崟鏍戦�夋嫨椤规槸鍚﹀叧鑱旀樉绀�', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + PRIMARY KEY (`package_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='绉熸埛濂楅琛�'; + +-- ---------------------------- +-- Records of sys_tenant_package +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for sys_user +-- ---------------------------- +DROP TABLE IF EXISTS `sys_user`; +CREATE TABLE `sys_user` ( + `user_id` bigint NOT NULL COMMENT '鐢ㄦ埛ID', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `dept_id` bigint DEFAULT NULL COMMENT '閮ㄩ棬ID', + `user_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐢ㄦ埛璐﹀彿', + `nick_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '鐢ㄦ埛鏄电О', + `user_type` varchar(10) COLLATE utf8mb4_general_ci DEFAULT 'sys_user' COMMENT '鐢ㄦ埛绫诲瀷锛坰ys_user绯荤粺鐢ㄦ埛锛�', + `email` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鐢ㄦ埛閭', + `phonenumber` varchar(11) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鎵嬫満鍙风爜', + `sex` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鐢ㄦ埛鎬у埆锛�0鐢� 1濂� 2鏈煡锛�', + `avatar` bigint DEFAULT NULL COMMENT '澶村儚鍦板潃', + `password` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '瀵嗙爜', + `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '甯愬彿鐘舵�侊紙0姝e父 1鍋滅敤锛�', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 2浠h〃鍒犻櫎锛�', + `login_ip` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '鏈�鍚庣櫥褰旾P', + `login_date` datetime DEFAULT NULL COMMENT '鏈�鍚庣櫥褰曟椂闂�', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓鑰�', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊鑰�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '澶囨敞', + PRIMARY KEY (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='鐢ㄦ埛淇℃伅琛�'; + +-- ---------------------------- +-- Records of sys_user +-- ---------------------------- +BEGIN; +INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'admin', '鐤媯鐨勭嫯瀛怢i', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-08 09:40:35', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-08 09:40:35', '绠$悊鍛�'); +INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 108, 'test', '鏈儴闂ㄥ強浠ヤ笅 瀵嗙爜666666', 'sys_user', '', '', '1', NULL, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '0:0:0:0:0:0:0:1', '2024-12-25 18:54:12', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-05 14:22:20', NULL); +INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 102, 'test1', '浠呮湰浜� 瀵嗙爜666666', 'sys_user', '', '', '0', NULL, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '127.0.0.1', '2024-12-24 16:54:24', 103, 1, '2024-12-24 16:54:24', 4, '2024-12-24 16:54:24', NULL); +COMMIT; + +-- ---------------------------- +-- Table structure for sys_user_post +-- ---------------------------- +DROP TABLE IF EXISTS `sys_user_post`; +CREATE TABLE `sys_user_post` ( + `user_id` bigint NOT NULL COMMENT '鐢ㄦ埛ID', + `post_id` bigint NOT NULL COMMENT '宀椾綅ID', + PRIMARY KEY (`user_id`,`post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='鐢ㄦ埛涓庡矖浣嶅叧鑱旇〃'; + +-- ---------------------------- +-- Records of sys_user_post +-- ---------------------------- +BEGIN; +INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1); +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_general_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 (3, 3); +INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (4, 4); +COMMIT; + +-- ---------------------------- +-- Table structure for test_demo +-- ---------------------------- +DROP TABLE IF EXISTS `test_demo`; +CREATE TABLE `test_demo` ( + `id` bigint NOT NULL COMMENT '涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `dept_id` bigint DEFAULT NULL COMMENT '閮ㄩ棬id', + `user_id` bigint DEFAULT NULL COMMENT '鐢ㄦ埛id', + `order_num` int DEFAULT '0' COMMENT '鎺掑簭鍙�', + `test_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'key閿�', + `value` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍊�', + `version` int DEFAULT '0' COMMENT '鐗堟湰', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓浜�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊浜�', + `del_flag` int DEFAULT '0' COMMENT '鍒犻櫎鏍囧織', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='娴嬭瘯鍗曡〃'; + +-- ---------------------------- +-- Records of test_demo +-- ---------------------------- +BEGIN; +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, '000000', 102, 4, 1, '娴嬭瘯鏁版嵁鏉冮檺', '娴嬭瘯', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, '000000', 102, 3, 2, '瀛愯妭鐐�1', '111', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, '000000', 102, 3, 3, '瀛愯妭鐐�2', '222', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, '000000', 108, 4, 4, '娴嬭瘯鏁版嵁', 'demo', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, '000000', 108, 3, 13, '瀛愯妭鐐�11', '1111', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, '000000', 108, 3, 12, '瀛愯妭鐐�22', '2222', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, '000000', 108, 3, 11, '瀛愯妭鐐�33', '3333', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, '000000', 108, 3, 10, '瀛愯妭鐐�44', '4444', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, '000000', 108, 3, 9, '瀛愯妭鐐�55', '5555', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, '000000', 108, 3, 8, '瀛愯妭鐐�66', '6666', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, '000000', 108, 3, 7, '瀛愯妭鐐�77', '7777', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, '000000', 108, 3, 6, '瀛愯妭鐐�88', '8888', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, '000000', 108, 3, 5, '瀛愯妭鐐�99', '9999', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +COMMIT; + +-- ---------------------------- +-- Table structure for test_tree +-- ---------------------------- +DROP TABLE IF EXISTS `test_tree`; +CREATE TABLE `test_tree` ( + `id` bigint NOT NULL COMMENT '涓婚敭', + `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '绉熸埛缂栧彿', + `parent_id` bigint DEFAULT '0' COMMENT '鐖秈d', + `dept_id` bigint DEFAULT NULL COMMENT '閮ㄩ棬id', + `user_id` bigint DEFAULT NULL COMMENT '鐢ㄦ埛id', + `tree_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '鍊�', + `version` int DEFAULT '0' COMMENT '鐗堟湰', + `create_dept` bigint DEFAULT NULL COMMENT '鍒涘缓閮ㄩ棬', + `create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿', + `create_by` bigint DEFAULT NULL COMMENT '鍒涘缓浜�', + `update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿', + `update_by` bigint DEFAULT NULL COMMENT '鏇存柊浜�', + `del_flag` int DEFAULT '0' COMMENT '鍒犻櫎鏍囧織', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='娴嬭瘯鏍戣〃'; + +-- ---------------------------- +-- Records of test_tree +-- ---------------------------- +BEGIN; +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, '000000', 0, 102, 4, '娴嬭瘯鏁版嵁鏉冮檺', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, '000000', 1, 102, 3, '瀛愯妭鐐�1', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, '000000', 2, 102, 3, '瀛愯妭鐐�2', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, '000000', 0, 108, 4, '娴嬭瘯鏍�1', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, '000000', 4, 108, 3, '瀛愯妭鐐�11', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, '000000', 4, 108, 3, '瀛愯妭鐐�22', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, '000000', 4, 108, 3, '瀛愯妭鐐�33', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, '000000', 5, 108, 3, '瀛愯妭鐐�44', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, '000000', 6, 108, 3, '瀛愯妭鐐�55', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, '000000', 7, 108, 3, '瀛愯妭鐐�66', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, '000000', 7, 108, 3, '瀛愯妭鐐�77', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, '000000', 10, 108, 3, '瀛愯妭鐐�88', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, '000000', 10, 108, 3, '瀛愯妭鐐�99', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0); +COMMIT; + +SET FOREIGN_KEY_CHECKS = 1; -- Gitblit v1.9.3