¶Ô±ÈÐÂÎļþ |
| | |
| | | /* |
| | | 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 '使ç¨é¨é¨ï¼å
³èidï¼', |
| | | `resp_person` bigint DEFAULT NULL COMMENT '责任人(å
³èid)', |
| | | `contact_phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'èç³»çµè¯', |
| | | `deploy_date` date DEFAULT NULL COMMENT 'æ£å¼ä½¿ç¨æ¥æ', |
| | | `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 'èåç±»åï¼Mç®å½ 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æ£å¸¸ 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 'çç¹èå´-设å¤ç±»åï¼è®¾å¤ç±»åidï¼', |
| | | `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 'çæä»£ç æ¹å¼ï¼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='代ç çæä¸å¡è¡¨'; |
| | | |
| | | -- ---------------------------- |
| | | -- 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='代ç çæä¸å¡è¡¨å段'; |
| | | |
| | | -- ---------------------------- |
| | | -- 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', '设å¤ç¶æè®°å½id', '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 '客æ·ç«¯id', |
| | | `client_key` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客æ·ç«¯key', |
| | | `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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | PRIMARY KEY (`id`) |
| | | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 'ç³»ç»å
ç½®ï¼Yæ¯ Nå¦ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | `remark` varchar(500) 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ï¼æµ
è²ä¸»é¢theme-light'); |
| | | INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 'è´¦å·èªå©-æ¯å¦å¼å¯ç¨æ·æ³¨ååè½', 'sys.account.registerUser', 'false', 'Y', 103, 1, '2024-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 'ç¶é¨é¨id', |
| | | `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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | PRIMARY KEY (`dept_id`) |
| | | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 'æ¯å¦é»è®¤ï¼Yæ¯ Nå¦ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | `remark` varchar(500) 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, 'æ£å¸¸', '0', 'sys_normal_disable', '', '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 (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, 'æ£å¸¸', '0', 'sys_notice_status', '', '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 (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, 'çæä»£ç ', '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, 'æ£å¸¸ç¶æ'); |
| | | 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 'ç¶èåID', |
| | | `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 'èåç±»åï¼Mç®å½ 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æ£å¸¸ 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, '代ç çæ', 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, '代ç çæèå'); |
| | | 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, 'è´¦æ·è§£é', 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, '导å
¥ä»£ç ', 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, 'é¢è§ä»£ç ', 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, 'çæä»£ç ', 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æ£å¸¸ 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æ£å¸¸ 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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\":\"è£äºé¿\",\"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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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\":\"设å¤ç¶æè®°å½id\",\"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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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', '代ç çæ', 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ï¼Y=æ¯,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æ£å¸¸ 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, 'è£äºé¿', 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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | `remark` varchar(500) 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 'ç¨æ·çææcodeï¼é¨åå¹³å°å¯è½æ²¡æ', |
| | | `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代表åå¨ 2代表å é¤ï¼', |
| | | 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 'ç»ä¸ç¤¾ä¼ä¿¡ç¨ä»£ç ', |
| | | `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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | PRIMARY KEY (`id`) |
| | | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | PRIMARY KEY (`package_id`) |
| | | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 'ç¨æ·ç±»åï¼sys_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æ£å¸¸ 1åç¨ï¼', |
| | | `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT 'å 餿 å¿ï¼0代表åå¨ 2代表å é¤ï¼', |
| | | `login_ip` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT 'æåç»å½IP', |
| | | `login_date` datetime DEFAULT NULL COMMENT 'æåç»å½æ¶é´', |
| | | `create_dept` bigint DEFAULT NULL COMMENT 'å建é¨é¨', |
| | | `create_by` bigint DEFAULT NULL COMMENT 'å建è
', |
| | | `create_time` datetime DEFAULT NULL COMMENT 'å建æ¶é´', |
| | | `update_by` bigint DEFAULT NULL COMMENT 'æ´æ°è
', |
| | | `update_time` datetime DEFAULT NULL COMMENT 'æ´æ°æ¶é´', |
| | | `remark` varchar(500) 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', 'ç¯ççç®åLi', '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 'ç¶id', |
| | | `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; |