/* Navicat Premium Dump SQL Source Server : local Source Server Type : MySQL Source Server Version : 90200 (9.2.0) Source Host : localhost:3306 Source Schema : eims Target Server Type : MySQL Target Server Version : 90200 (9.2.0) File Encoding : 65001 Date: 08/04/2025 08:16:48 */ 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TIME_STAMP_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DATA_` longblob, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DEPLOYMENT_ID_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `VALUE_` varchar(300) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT '1', `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `ACT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CALL_PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `ASSIGNEE_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DESCRIPTION_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `URL_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CONTENT_ID_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TIME_` datetime(3) NOT NULL, `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACTION_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `MESSAGE_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `VAR_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REV_` int DEFAULT NULL, `TIME_` datetime(3) NOT NULL, `BYTEARRAY_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DOUBLE_` double DEFAULT NULL, `LONG_` bigint DEFAULT NULL, `TEXT_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TEXT2_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `LINK_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` datetime(3) DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ROOT_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ROOT_SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HIERARCHY_TYPE_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `GROUP_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` datetime(3) DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT '1', `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `BUSINESS_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `START_ACT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `END_ACT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUPER_PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DELETE_REASON_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT '', `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CALLBACK_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CALLBACK_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REFERENCE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REFERENCE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROPAGATED_STAGE_INST_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BUSINESS_STATUS_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT '1', `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_DEF_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROPAGATED_STAGE_INST_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `STATE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DESCRIPTION_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ASSIGNEE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `START_TIME_` datetime(3) NOT NULL, `IN_PROGRESS_TIME_` datetime(3) DEFAULT NULL, `IN_PROGRESS_STARTED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CLAIM_TIME_` datetime(3) DEFAULT NULL, `CLAIMED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUSPENDED_TIME_` datetime(3) DEFAULT NULL, `SUSPENDED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `END_TIME_` datetime(3) DEFAULT NULL, `COMPLETED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DURATION_` bigint DEFAULT NULL, `DELETE_REASON_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `TIME_STAMP_` timestamp(3) NOT NULL, `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DATA_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT '1', `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `VAR_TYPE_` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BYTEARRAY_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DOUBLE_` double DEFAULT NULL, `LONG_` bigint DEFAULT NULL, `TEXT_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TEXT2_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `META_INFO_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `INFO_JSON_ID_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT '', `DEPLOY_TIME_` timestamp(3) NULL DEFAULT NULL, `DERIVED_FROM_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DERIVED_FROM_ROOT_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_DEPLOYMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ENGINE_VERSION_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DEPLOYMENT_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EDITOR_SOURCE_VALUE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EDITOR_SOURCE_EXTRA_VALUE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `VERSION_` int NOT NULL, `DEPLOYMENT_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RESOURCE_NAME_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DGRM_RESOURCE_NAME_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DESCRIPTION_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT '', `ENGINE_VERSION_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DERIVED_FROM_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DERIVED_FROM_ROOT_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT '1', `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `ACT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CALL_PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `ASSIGNEE_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EXCLUSIVE_` tinyint(1) DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CORRELATION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DUEDATE_` timestamp(3) NULL DEFAULT NULL, `REPEAT_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CREATE_TIME_` datetime(3) DEFAULT NULL, `LINK_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REF_SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ROOT_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ROOT_SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HIERARCHY_TYPE_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `EVENT_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EVENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACTIVITY_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CONFIGURATION_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATED_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3), `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BUSINESS_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUPER_EXEC_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ROOT_PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ACT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT '', `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `START_ACT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `START_TIME_` datetime(3) DEFAULT NULL, `START_USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CALLBACK_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REFERENCE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `REFERENCE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROPAGATED_STAGE_INST_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BUSINESS_STATUS_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCLUSIVE_` tinyint(1) DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CORRELATION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RETRIES_` int DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DUEDATE_` timestamp(3) NULL DEFAULT NULL, `REPEAT_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RETRIES_` int DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ADV_HANDLER_CFG_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `GROUP_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `USER_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCLUSIVE_` tinyint(1) DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CORRELATION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RETRIES_` int DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DUEDATE_` timestamp(3) NULL DEFAULT NULL, `REPEAT_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EXCLUSIVE_` tinyint(1) DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CORRELATION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RETRIES_` int DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DUEDATE_` timestamp(3) NULL DEFAULT NULL, `REPEAT_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROPAGATED_STAGE_INST_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `STATE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PARENT_TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DESCRIPTION_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_DEF_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ASSIGNEE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DELEGATION_` varchar(64) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CLAIM_TIME_` datetime(3) DEFAULT NULL, `CLAIMED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUSPENDED_TIME_` datetime(3) DEFAULT NULL, `SUSPENDED_BY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `IN_PROGRESS_DUE_DATE_` datetime(3) DEFAULT NULL, `DUE_DATE_` datetime(3) DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUSPENSION_STATE_` int DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT '', `FORM_KEY_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL, `LOCK_OWNER_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCLUSIVE_` tinyint(1) DEFAULT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROCESS_INSTANCE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_DEF_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `ELEMENT_NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_DEFINITION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CORRELATION_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RETRIES_` int DEFAULT NULL, `EXCEPTION_STACK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `EXCEPTION_MSG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DUEDATE_` timestamp(3) NULL DEFAULT NULL, `REPEAT_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `HANDLER_CFG_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CUSTOM_VALUES_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `EXECUTION_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `PROC_INST_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TASK_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BYTEARRAY_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `DOUBLE_` double DEFAULT NULL, `LONG_` bigint DEFAULT NULL, `TEXT_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TEXT2_` varchar(4000) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `META_INFO_` varchar(4000) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备名称\n', `model_no` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '型号', `made_in` varchar(50) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '铭牌信息', `purchase_date` date DEFAULT NULL COMMENT '采购日期', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态', `location` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '所在场所', `dept_used` bigint DEFAULT NULL COMMENT '使用部门(关联id)', `resp_person` bigint DEFAULT NULL COMMENT '责任人(关联id)', `contact_phone` varchar(100) 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '导入状态(字典)', `inventory_flag` char(1) CHARACTER SET utf8mb4 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 '备注', `seller` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '销售商', `unit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '单位', `handle_user` bigint DEFAULT NULL COMMENT '经手人', `purchase_user` bigint DEFAULT NULL COMMENT '采购人', `attach_id` bigint DEFAULT NULL COMMENT '附件', `profile` varchar(200) 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827130769409, NULL, 1, 'GPA2001G004', '电子镇流器节能灯输入特性分析仪', 'PF9810A', '杭州远方仪器有限公司', NULL, NULL, '2001-04-01', '4', '生产技术部', NULL, NULL, '', NULL, NULL, NULL, NULL, '1', '0', NULL, NULL, NULL, 1, '2025-02-14 09:53:43', 1, '2025-02-14 10:05:00', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827189489665, NULL, 0, 'GPA2002G005', '老化台', '/', '上海兰宝传感器有限公司', NULL, NULL, '2002-03-01', '0', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '0009-01-01', '0', '0', NULL, NULL, NULL, 1, '2025-02-14 09:53:43', 1, '2025-02-19 09:22:00', NULL, NULL, NULL, NULL, NULL, NULL, '原质量用2021.12月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827218849793, NULL, NULL, 'GPA2002E006', '低温恒温槽', 'DC-3030', '上海衡平仪器仪表厂', NULL, NULL, '2002-03-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827235627010, NULL, NULL, 'GPA2004H024', '漏电流测试仪', 'TH2686', '常州同恵电子有限公司', NULL, NULL, '2004-05-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827248209921, NULL, NULL, 'GPA2004H026', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2004-08-01', NULL, '质量管理部', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827260792833, NULL, NULL, 'GPA2005H027', 'LCR数字电桥', 'HF2810', '常州恵友电子科技有限公司', NULL, NULL, '2005-06-01', NULL, '组调三线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827311124481, NULL, NULL, 'GPA2006H028', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调三线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827327901698, NULL, NULL, 'GPA2004H028', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2004-08-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827344678913, NULL, NULL, 'GPG2010WL003', '电子负载', NULL, NULL, NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827357261826, NULL, NULL, 'GPA2007H048', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, NULL, NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827378233346, NULL, NULL, 'GPA2007H049', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827390816257, NULL, NULL, 'GPG2010WL001', '泰克示波器', 'TDS-1012B', NULL, NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827403399169, NULL, NULL, 'GPA2007F052', '泰克示波器', 'TDS220', NULL, NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827415982082, NULL, NULL, 'GPA2007D053', '冲击耐压试验仪', 'SG-255', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827432759298, NULL, NULL, 'GPA2007E001', '高加速度冲击实验系统', 'CL-02/CC-2000', '苏州实验仪器总厂', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827449536514, NULL, NULL, 'GPA2007E055', '静电放电发生器', 'ESD-20', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827462119426, NULL, NULL, 'GPA2007E056', '喷水实验仪', 'JPS', '无锡南亚实验设备有限公司', NULL, NULL, '2007-07-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827478896641, NULL, NULL, 'GPA2007E002', '机械振动台', 'J-25A', '苏州实验仪器总厂', '1.3', NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, '0512-66658086 杨一纯', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827491479554, NULL, NULL, 'GPA2007D058', '群脉冲发生器', 'EFT-4001', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827508256770, NULL, NULL, 'GPA2007G059', '恒温水槽', 'YH-8727', '东莞市常平锐铧电子仪器厂', NULL, NULL, '2007-08-01', NULL, '生产技术部', NULL, NULL, '0769-83811136', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827525033985, NULL, NULL, 'GPA2008E061', '炉温测试仪', 'BESTEMP C6000', 'BESTEMP', '0', NULL, '2008-01-01', NULL, 'SMT', NULL, NULL, '0512-62722650 62721990 FAX:67575070 13951113338', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827579559938, NULL, NULL, 'GPA2008H062', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-02-01', NULL, '维修线', NULL, NULL, '0769-85723888 FAX:85725888', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827596337154, NULL, NULL, 'GPA2008G063', '频率计数器', '/', '上海兰宝传感器有限公司', NULL, NULL, '2008-04-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827608920065, NULL, NULL, 'GPA2008H064', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827621502977, NULL, NULL, 'GPA2008H065', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827634085890, NULL, NULL, 'GPA2008H066', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827650863106, NULL, NULL, 'GPA2008H067', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827663446018, NULL, NULL, 'GPA2008H068', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827676028930, NULL, NULL, 'GPA2008H069', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827688611841, NULL, NULL, 'GPA2008WL070', 'LCR数字电桥', 'TH2828', '常州同恵电子有限公司', NULL, NULL, '2008-07-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '原生技赵伟伟使用,2022.07.11转入研发,2024年8月研发走调拨单到生技,实物还在研发存放。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827697000450, NULL, NULL, 'GPA2008G073', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827713777665, NULL, NULL, 'GPA2008G075', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827726360577, NULL, NULL, 'GPA2008G076', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827738943489, NULL, NULL, 'GPA2008G078', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827747332097, NULL, NULL, 'GPA2008H079', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, NULL, NULL, '维修线', NULL, NULL, '0769-85723888 FAX:85725888', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827759915010, NULL, NULL, 'GPA2008H080', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827768303618, NULL, NULL, 'GPA2008WL017', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-11-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼闲置'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827776692225, NULL, NULL, 'GPA2008H082', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-11-01', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827789275138, NULL, NULL, 'GPA2008D083', '可程式高低温实验机', 'WCT-1P-D(T)', '上海骤新电子科技有限公司', '7', NULL, '2008-12-22', NULL, '质量管理部', NULL, NULL, '杨士山:15026495550', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827801858049, NULL, NULL, 'GPA2009H084', '程控变频电源', 'AN97002SS', '青岛艾诺智能仪器有限公司', NULL, NULL, '2009-02-04', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '闲置2016.08.15研发回退车间二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827810246657, NULL, NULL, 'GPA2009G085', '手动液压泵', '700HTP-1', 'FLUKE', NULL, NULL, '2009-06-08', '4', '生产技术部', NULL, NULL, '13764712269 钟杰', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827835412481, NULL, NULL, 'GPA2009G086', '释放阀', '700PRV-1', 'FLUKE', NULL, NULL, '2009-06-08', '4', '生产技术部', NULL, NULL, '13764712269 钟杰', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827847995393, NULL, NULL, 'GPA2009H097', '示波器', 'DS1102E', '北京普源', '0.05', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2013年外修中,技术部赵荣有记录.'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827856384001, NULL, NULL, 'GPA2009G098', '示波器', 'TDS-1012B', '美国泰克', '0.03', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827868966914, NULL, NULL, 'GPA2009G099', '直流电源', 'GPR-30H10D', '台湾固纬实业股份有限公司', '0.55', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '0512-66617177 FAX:0512-66617277', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827881549826, NULL, NULL, 'GPA2009F100', '频普分析仪', 'GPS-810', '台湾固纬实业股份有限公司', '0.075', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827889938433, NULL, NULL, 'GPA2009H101', '数字示波器', 'DS1102E', '北京普源', '0.05', NULL, '0009-12-24', NULL, '质量管理部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827898327042, NULL, NULL, 'GPA2009H102', '高频测试台', 'PL-2000H', '上海兰宝传感器有限公司', NULL, NULL, '0009-11-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827906715650, NULL, NULL, 'GPA2009H103', '低频测试台', 'PL-99H', '上海兰宝传感器有限公司', NULL, NULL, '0009-11-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827915104258, NULL, NULL, 'GPA2010H104', '数字示波器', 'DS1102E', '北京普源', '0.05', NULL, '0010-01-06', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827927687169, NULL, NULL, 'GPA2010G105', '张力计', 'DTMB-2', '日电产新宝(上海)国际贸易有限公司', NULL, NULL, '0010-01-22', NULL, '研发中心', NULL, NULL, '021-64400388/64400701/64400702', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827940270082, NULL, NULL, 'GPA2010C106', '逻辑分析仪', '16804A', '美国', '0.775', NULL, '0010-02-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2024.08研发走调拨单到到生技,实物存放还是放在研发中心。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827948658689, NULL, NULL, 'GPA2010G107', '耐压力测试仪', 'DBD0.8', '德州市鼎鑫液压机具厂', '1.5', NULL, '0010-06-05', NULL, '质量管理部', NULL, NULL, '13406860386 范工', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827957047298, NULL, NULL, 'GPA2006H108', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调二线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827969630209, NULL, NULL, 'GPA2006H109', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '检包线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827982213122, NULL, NULL, 'GPA2010H110', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827990601729, NULL, NULL, 'GPA2010H111', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828003184642, NULL, NULL, 'GPA2010H112', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828015767553, NULL, NULL, 'GPA2010H113', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828028350465, NULL, NULL, 'GPA2010H114', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '试产组', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828053516290, NULL, NULL, 'GPA2010H117', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828066099202, NULL, NULL, 'GPA2010H120', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828082876418, NULL, NULL, 'GPA2010H121', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828095459330, NULL, NULL, 'GPA2010H122', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828103847938, NULL, NULL, 'GPA2010H124', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828112236545, NULL, NULL, 'GPA2010H125', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828124819458, NULL, NULL, 'GPA2010H128', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828133208065, NULL, NULL, 'GPA2010H129', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828145790978, NULL, NULL, 'GPA2010H131', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828154179585, NULL, NULL, 'GPA2010H132', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828166762497, NULL, NULL, 'GPA2010F133', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828179345409, NULL, NULL, 'GPA2010F134', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828187734018, NULL, NULL, 'GPA2010F135', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828196122625, NULL, NULL, 'GPA2010F136', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828204511234, NULL, NULL, 'GPA2010F137', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828212899841, NULL, NULL, 'GPA2010H138', '高斯计', 'HT201', NULL, NULL, NULL, '2010-12-01', NULL, '质量管理部', NULL, NULL, '021-52370535 13701976246', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828221288450, NULL, NULL, 'GPA2011E139', '电源供应器', 'TCPA300', '美国', NULL, NULL, '2011-01-20', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '闲置2016.08.15研发回退车间二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828229677058, NULL, NULL, 'GPA2008H140', '光强度测量仪', '93408', 'BEHA', NULL, NULL, '2008-06-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828238065665, NULL, NULL, 'GPA2011E141', 'LCR测试仪', '3532-50', '日置(上海)商贸有限公司', NULL, NULL, '2011-02-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '原前加工线使用,2022.07.11转入研发'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828246454273, NULL, NULL, 'GPA2011H142', '数字存储示波器', 'UTD2062C', '优利德科技(东莞)有限公司', NULL, NULL, '2011-03-21', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828254842882, NULL, NULL, 'GPA2011H143', '硬度计', 'TH200', '北京时代新天科贸有限公司', NULL, NULL, '2011-03-26', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2013.05.20找到在陈爱明手上'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828267425794, NULL, NULL, 'GPA2011D144', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', '9', NULL, '2011-03-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828275814401, NULL, NULL, 'GPA2011D145', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2011-03-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828284203010, NULL, NULL, 'GPA2011D146', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2011-06-03', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828296785921, NULL, NULL, 'GPA2011F147', '激光功率能量计', 'PM100D', '统雷(上海)商贸有限公司', NULL, NULL, '2011-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828305174530, NULL, NULL, 'GPA2011H148', '示波器', 'DS1102E', '北京普源', '0.05', NULL, '0011-09-07', NULL, '生产技术部', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828313563137, NULL, NULL, 'GPA2011F149', '泰克示波器', 'TDS2014C', '泰克科技(中国)有限公司', NULL, NULL, '0011-09-08', NULL, '研发中心', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828321951745, NULL, NULL, 'GPA2011F150', '信号发生器', '33220A', '上海咏泽仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828330340354, NULL, NULL, 'GPA2011H151', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828342923265, NULL, NULL, 'GPA2011H154', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828355506178, NULL, NULL, 'GPA2011H155', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828363894786, NULL, NULL, 'GPA2011H156', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828372283393, NULL, NULL, 'GPA2011H157', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828380672002, NULL, NULL, 'GPA2011H161', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828393254914, NULL, NULL, 'GPA2011H162', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828401643521, NULL, NULL, 'GPA2011H163', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828410032130, NULL, NULL, 'GPA2011H164', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828422615042, NULL, NULL, 'GPA2011H165', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828431003649, NULL, NULL, 'GPA2011H169', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828443586562, NULL, NULL, 'GPA2011H171', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼闲置'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828451975169, NULL, NULL, 'GPA2011H172', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828464558082, NULL, NULL, 'GPA2011H173', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828472946689, NULL, NULL, 'GPA2011H174', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828481335297, NULL, NULL, 'GPA2011H178', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828502306817, NULL, NULL, 'GPA2011H179', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828510695425, NULL, NULL, 'GPA2011H180', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828519084033, NULL, NULL, 'GPA2012D181', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2012-02-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828531666946, NULL, NULL, 'GPA2006H182', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调一线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828540055553, NULL, NULL, 'GPA2006H183', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '生产技术部', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828548444162, NULL, NULL, 'GPA2012F184', '示波器', 'DS4014 100MHZ 4GSA/S', '北京普源', NULL, NULL, '2012-04-12', NULL, '研发中心', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏君13801721735 北京普源精电科技有限公司010-80706688', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828556832769, NULL, NULL, 'GPA2012F185', '示波器', 'DS4014 100MHZ 4GSA/S', '北京普源', NULL, NULL, '2012-04-12', NULL, '研发中心', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏君13801721735 北京普源精电科技有限公司010-80706688', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828565221377, NULL, NULL, 'GPA2012H186', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828577804289, NULL, NULL, 'GPA2012H187', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828586192897, NULL, NULL, 'GPA2012H188', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828598775810, NULL, NULL, 'GPA2012D189', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2012-07-04', NULL, '封灌间', NULL, NULL, '邱先生:13564558678', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828607164417, NULL, NULL, 'GPA2012F190', '示波器', 'DS4014', '北京普源', NULL, NULL, '2012-07-31', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828615553025, NULL, NULL, 'GPA2012F191', '示波器', 'DS4014', '北京普源', NULL, NULL, '2012-07-31', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828623941634, NULL, NULL, 'GPA2012H192', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2012-08-07', NULL, '维修线', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏金13801722735', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828636524546, NULL, NULL, 'GPA2012H193', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-08-07', NULL, '安徽兰宝传感', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏金13801722735', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原许工使用,2024.10.14已转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828649107457, NULL, NULL, 'GPA2012C195', '传感器检测仪', NULL, '上海兰宝传感器有限公司', NULL, NULL, '2013-01-04', NULL, '停用,研发', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828661690370, NULL, NULL, 'GPC2001G004', '钻铣镗磨床', 'ZXTM-40', '山东滕州鲁南机床厂', '1.5', NULL, '2001-08-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828674273281, NULL, NULL, 'GPC2002G005', '切板机', 'HEDA-801A-02', '/', NULL, NULL, '2002-03-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828682661890, NULL, NULL, 'GPC2003E006', '车床', 'C6132A', '广州南方机床厂', '3.5', NULL, '2003-01-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828691050498, NULL, NULL, 'GPC2003E007', '车床', 'C6132A', '广州南方机床厂', '3.5', NULL, '2003-01-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828703633410, NULL, NULL, 'GPC2004H010', '鼓风干燥箱', 'GZX-9030MBE', '上海博迅实业有限公司', '0.55', NULL, '2004-05-01', NULL, '金工车间', NULL, NULL, '021-56980111 Fax:56303876', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828716216321, NULL, NULL, 'GPC2004H011', '鼓风干燥箱', 'GZX-9030MBE', '上海博迅实业有限公司', '0.55', NULL, '2004-05-01', NULL, '质量管理部', NULL, NULL, '021-56980111 Fax:56303876', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828728799234, NULL, NULL, NULL, NULL, NULL, NULL, '25', NULL, NULL, '4', NULL, NULL, NULL, 'Tel:0755-84190526,84190532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828745576450, NULL, NULL, 'GPC2006E018', '扎线机', 'Tie-Matic', NULL, NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828758159361, NULL, NULL, 'GPC2006H021', '台式钻攻两用机', 'ZS4112C', '杭州西湖台钻有限公司', '0.75', NULL, '2006-05-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828766547970, NULL, NULL, 'GPC2006E023', '升降机', 'SJG1-3.5', '苏州市格安特升降机械有限公司', '2.2', NULL, '2006-05-01', '4', '材料仓库', NULL, NULL, 'Tel:0512-66706638,66702955', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2021年起停止使用!!'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828779130881, NULL, NULL, 'GPC2006D025', '空压机', 'GA15P-10', '无锡阿特拉斯.科普柯压缩机有限公司', '15', NULL, '2006-06-01', '4', '空压机房', NULL, NULL, '阿特拉斯奉贤办事处 雷工:13636360407', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828787519489, NULL, NULL, 'GPC2006H026', '自动捆包机', '东莞旭田 XT8020', '东莞旭田', NULL, NULL, '2006-07-01', NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828800102401, NULL, NULL, 'GPC2006F027', '超声波清洗机', NULL, '上海必能信超声有限公司', '1', NULL, '2006-07-01', NULL, '洗衣房', NULL, NULL, 'Tel: 021-57745558 FAX: 021-57745100', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828808491010, NULL, NULL, 'GPC2006G029', '自动切管机', 'JQ-6100', '浙江君权自动化设备总厂', '0.25', NULL, '2006-10-01', NULL, '前加工线', NULL, NULL, 'Tel: 021-54242868 FAX: 021-54242858', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828816879617, NULL, NULL, 'GPC2007G031', '热熔机', '/', '/', NULL, NULL, NULL, '4', '组调二线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828825268225, NULL, NULL, 'GPC2007G032', '真空包装机', 'DZQ400-2D', '上海旭田机械设备有限公司', '3', NULL, '2007-03-01', NULL, '材料仓库', NULL, NULL, '021-62549635,32250926, 32250103', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828837851138, NULL, NULL, 'GPC2005F015', '超音波熔接机', 'EGW-1518', '上海长荣塑胶熔接装备有限公司', '1.4', NULL, '2007-03-01', NULL, '清洗间', NULL, NULL, 'FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828854628354, NULL, NULL, 'GPC2007D034', '数控车床', 'CK6130', '中星数控机床有限公司', '3.5', NULL, '2007-05-01', NULL, '金工车间', NULL, NULL, '江平:13122775532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828863016961, NULL, NULL, 'GPC2007C037', '全自动绕线机', 'BXCO3', 'TANAC 田中精机有限公司', '1.5', NULL, '2007-09-01', NULL, '前加工线', NULL, NULL, '13615889283 谭晓江', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '013615889283谭工', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828875599874, NULL, NULL, 'GPC2007C038', '半导体激光打标机', 'MYDP-50L', '上海镭天激光设备有限公司', '1.5', NULL, '2007-09-01', NULL, '前加工线', NULL, NULL, 'Tel:021-54265627/8/9-807 FAX:021-54265629', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828883988482, NULL, NULL, 'GPC2007B039', '八温区回流焊', 'NS-800', '劲拓实业有限公司', '64', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828896571393, NULL, NULL, 'GPC2007A040', '贴片机', 'KE-2070M', 'JUKI', '3', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828909154305, NULL, NULL, 'GPC2007F041', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2007-11-01', NULL, 'SMT', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828917542914, NULL, NULL, 'GPC2008H042', '烟雾净化过滤系统', 'QUICK6102', '常州速骏电子有限公司', '0.08', NULL, '2008-01-01', NULL, '前加工线', NULL, NULL, '0519-86225678 FAX:86558599', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828925931521, NULL, NULL, 'GPC2008E044', 'MB1000媒介喷射器', 'MB1000-2', '上海友赛电子科技有限公司', NULL, NULL, '2008-02-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828938514434, NULL, NULL, 'GPC2008A045', '贴片机', 'KE-2070M', 'JUKI', '3', NULL, '2008-04-01', NULL, 'SMT', NULL, NULL, '技术工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828946903042, NULL, NULL, 'GPC2008G046', '接驳台', 'EW-600A', '深圳市亿维天地电子设备有限公司', '0.1', NULL, '2008-05-01', NULL, 'SMT', NULL, NULL, '0755-61146988 FAX:0755-61146996', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828959485953, NULL, NULL, 'GPC2008G047', '接驳台', 'EW-600A', '深圳市亿维天地电子设备有限公司', '0.1', NULL, '2008-05-01', NULL, 'SMT', NULL, NULL, '0755-61146988 FAX:0755-61146996', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828972068866, NULL, NULL, 'GPC2008G048', '超音波手焊接机', 'EGW-2803', '上海长荣塑胶熔接装备有限公司', NULL, NULL, '2008-05-01', '4', '生产技术部', NULL, NULL, 'Tel:021-64041880 FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828984651778, NULL, NULL, 'GPF2007H003', '冰箱', 'LC-122C', '海尔', NULL, NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829001428994, NULL, NULL, 'GPC2008G052', '稳变压器', 'AED-3015HC3C2XL', '壹泰科技有限公司', '15', NULL, '2008-06-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829014011905, NULL, NULL, 'GPC2008F053', '端子机', 'HS-2W', '苏州琦辉电子设备厂', '2', NULL, '2008-07-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829026594818, NULL, NULL, 'GPC2008E054', '饶线机', 'PNS-112', '日本萨比克株式会社', '0.5', NULL, '2008-07-01', NULL, '安徽兰宝传感', NULL, NULL, '021-6249 5531', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原吴丽雅使用,2024.03.25转安徽公司。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829039177730, NULL, NULL, 'GPC2008A055', 'CNC瑞士型自动车床', 'SR-20RⅡ', 'STAR MICRONICSCO.,LTD', '7', NULL, '2008-07-01', NULL, '金工车间', NULL, NULL, '李胜齐:013962420157上海外高桥', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '上海龙泽:13524853004席工'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829047566337, NULL, NULL, 'GPC2008D056', '自动棒材送料机', 'SUPER GS-326', '中义科技机械股份有限公司', '0.7', NULL, '2008-07-01', NULL, '金工车间', NULL, NULL, 'TEL:04-24066970 FAX:042-24069934', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829060149249, NULL, NULL, 'GPC2008D057', '双液自动点胶机', 'DH6000-A', '上海德皓电子有限公司', '4.8', NULL, '2008-07-01', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829068537858, NULL, NULL, 'GPC2009E058', '数字式测量投影仪', 'CPJ-3015AZ', '台湾万濠', NULL, NULL, '2009-02-17', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829076926466, NULL, NULL, 'GPC2009E059', '饶线机', 'PNS-112', '日本萨比克株式会社', '0.5', NULL, '2009-01-15', NULL, '前加工线', NULL, NULL, '021-6249 5531', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829089509378, NULL, NULL, 'GPC2008B060', '剥线机', 'PS9500P', 'Schleuniger', NULL, NULL, '2008-12-10', NULL, '前加工线', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829097897986, NULL, NULL, 'GPC2009C062', '无铅波峰焊炉', 'MS-450', '深圳市劲拓自动化设备有限公司', '34', NULL, '2009-01-08', NULL, '前加工线', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829106286594, NULL, NULL, 'GPC2009A063', '激光调阻机', 'ALS300L', 'AUR′EL 意大利', '3.5', NULL, '2009-08-01', NULL, '组调三线', NULL, NULL, 'Tel:390546941124 FAX:390546941660', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829118869506, NULL, NULL, 'GPC2008E066', '送线机', 'PF2200', '瑞士Schleuniger', NULL, NULL, '2008-12-10', NULL, '前加工线', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829131452417, NULL, NULL, 'GPC2008C067', '收线机', 'CC1000', '瑞士Schleuniger', NULL, NULL, '2008-12-10', '4', '生产技术部', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829144035329, NULL, NULL, 'GPC2009A068', '传感器自动检测系统', NULL, '德国', '1.5', NULL, '2009-08-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829156618242, NULL, NULL, 'GPC2010G069', '小型单色移印机', 'ZY-X1', '宁波高新区志远印刷设备制造有限公司', NULL, NULL, '0010-08-25', NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829169201154, NULL, NULL, 'GPC2010A070', '精密数控车床', 'BO205', '津上精密机床(浙江)有限公司', '7', NULL, '2010-08-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829173395458, NULL, NULL, 'GPC2010C071', '落地型双液点胶机', 'DH7000', '上海普轩电子', '5', NULL, '2010-04-21', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829185978370, NULL, NULL, 'GPC2010G072', '散装电容切脚机', 'CO-300AUTO', '台湾', NULL, NULL, '0010-10-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829194366978, NULL, NULL, 'GPC2010F073', 'MALCOM锡膏搅拌机', 'SPS-1', '日本', NULL, NULL, '0010-11-02', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829202755585, NULL, NULL, 'GPC2010A074', '自动包装机', 'AB180', '德国', NULL, NULL, '0010-11-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829215338498, NULL, NULL, 'GPC2010D076', '数控车床', 'CK6130', '中星数控机床有限公司', '3.5', NULL, '2010-12-28', NULL, '金工车间', NULL, NULL, '江平:13122775532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829227921409, NULL, NULL, 'GPC2011G078', '缓冲气垫设备', NULL, '上海阁泰包装材料有限公司', NULL, NULL, '2011-02-19', NULL, '成品仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829240504322, NULL, NULL, 'GPC2011F079', '超音波熔接机', 'EGW-1518', '上海长荣塑胶熔接装备有限公司', '1.4', NULL, '2011-05-01', NULL, '组调四线', NULL, NULL, 'FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海友松五金模具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829248892930, NULL, NULL, 'GPC2011B080', 'G5全自动视觉印刷机', 'G5', '东莞市凯格精密机械', '3', NULL, '2011-03-30', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829257281538, NULL, NULL, 'GPC2011E081', '矗鑫全自动上板机', 'SL-3BM', '深圳市矗鑫电子设备有限公司', NULL, NULL, '2011-03-30', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829265670146, NULL, NULL, 'GPC2011G082', '氩弧焊机', 'WSM-500', '上海沪工焊机(集团)有限公司', '3', NULL, '2011-05-20', NULL, '工程中心', NULL, NULL, '上海浙北商贸有限公司 \n59713131 黄建辉15821355881/15900892627', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829278253058, NULL, NULL, 'GPC2011G083', '氩弧电焊机', 'WSM-315', '上海沪工焊机(集团)有限公司', '3', NULL, '2011-05-20', '', '工程中心', NULL, NULL, '上海浙北商贸有限公司 \n59713131 黄建辉15821355881/15900892627', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829290835969, NULL, NULL, 'GPC2011F084', 'UV固化机(大)', NULL, '上海泽楷机电设备有限公司', '6', NULL, '2011-02-15', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829303418882, NULL, NULL, 'GPC2011G085', '单轴式绕线机', 'TCW-01A', '昆荣机械股份有限公司', NULL, NULL, '2011-06-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829316001794, NULL, NULL, 'GPC2011C086', '数控铣床', 'NX36', '杭州大天数控铣床有限公司', '7', NULL, '2011-03-11', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829324390402, NULL, NULL, 'GPC2006G008', '储气罐', '1/1.0', '上海申江压力容器有限公司', NULL, NULL, NULL, '4', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829332779009, NULL, NULL, 'GPC2011G088', '冷冻式压缩空气干燥机', 'CK-3.0A', '上海青阳空压气动设备有限公司', '1', NULL, '2011-07-27', '4', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829341167617, NULL, NULL, 'GPC2011F089', '摇臂钻床', 'Z3040X10', '腾州翔宇机床有限公司', '3', NULL, '2011-08-04', NULL, '工程中心', NULL, NULL, '孟小姐:0632-5611000', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829349556225, NULL, NULL, 'GPC2011D090', '激光打标机', 'XJDP-50L', '上海星捷激光设备有限公司', '1.5', NULL, '2011-07-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829362139137, NULL, NULL, 'GPC2011G091', '点胶机', 'TP-50', '腾盛流体控制', NULL, NULL, '2011-08-01', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829370527746, NULL, NULL, 'GPC2011F092', '油压机', 'XTM-103四柱两板', '深圳市鑫台铭机械设备有限公司', NULL, NULL, '2011-08-30', '4', '组调二线', NULL, NULL, '0755-89636069 售后服务13380303930', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829378916353, NULL, NULL, 'GPC2011C093', '双液自动点胶机', 'DPS6000', '上海普轩电子科技有限公司', '5', NULL, '2011-05-01', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829387304962, NULL, NULL, 'GPC2011C094', '油压闸式剪板机', 'QC11Y-12X4000', '南通大西洋机械有限公司', '9', NULL, '2011-05-01', NULL, '工程中心', NULL, NULL, '0513-88283527 FAX:0513-88283529', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829391499265, NULL, NULL, 'GPC2011B095', '折弯机', 'PR6C 225*3100', '江苏金方圆数控机床有限公司', '17', NULL, '2011-03-01', NULL, '安徽兰宝环保', NULL, NULL, '0514-87873787', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829404082178, NULL, NULL, 'GPC2011H096', '搬运小坦克', 'X18+Y18', '上海新世界五金机电有限公司新一五金商厂', '0', NULL, '2011-11-16', NULL, '工程中心', NULL, NULL, '021-636.3281', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829412470785, NULL, NULL, 'GPC2012E097', '剥皮端子压着机', 'SATC-20B', '浙江君权自动化设备有限公司', NULL, NULL, '2012-05-18', NULL, '前加工线', NULL, NULL, '郑方权 13817350699', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829420859393, NULL, NULL, 'GPC2012B099', 'G5全自动视觉印刷机', 'G5', '东莞市凯格精密机械', '3', NULL, '2012-06-10', NULL, 'SMT', NULL, NULL, '吴朋辉 0769-22767281', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829433442306, NULL, NULL, 'GPC2012A100', 'JUKI高速贴片机', 'KE-2070M', '上海西易电子有限公司', '3', NULL, '2012-06-18', NULL, 'SMT', NULL, NULL, '王雨后 021-51509052', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829441830914, NULL, NULL, 'GPC2012A101', 'JUKI高速贴片机', 'KE-2070M', '上海西易电子有限公司', '3', NULL, '2012-06-18', NULL, 'SMT', NULL, NULL, '王雨后 021-51509052', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829450219521, NULL, NULL, 'GPC2012E102', '剥皮端子压着机', 'SATC-20B', '浙江君权自动化设备有限公司', '1', NULL, '2012-06-19', NULL, '前加工线', NULL, NULL, '郑方权 13817350699', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829462802433, NULL, NULL, 'GPC2012H103', '铣刀钻头研磨机', 'MR-F4', '温岭市美日机床有限公司', '0.5', NULL, '2012-06-28', NULL, '生产技术部', NULL, NULL, '陈小姐 0576-89958338', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829471191042, NULL, NULL, 'GPC2012H104', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829483773953, NULL, NULL, 'GPC2012H105', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829487968257, NULL, NULL, 'GPC2012C106', '无铅回流焊', 'AS-800-N', '深圳市劲拓自动化设备有限公司', '67', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829500551169, NULL, NULL, 'GPC2012D108', '直联螺杆式空压机', 'GA37-10', '苏州阿特拉斯', '37', NULL, '2012-07-03', '1', '安徽兰宝', NULL, NULL, '王先生:021-51695913', NULL, NULL, NULL, '2012-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海洲创实业有限公司', NULL, NULL, NULL, NULL, '2022年12月由上海转移至安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829508939778, NULL, NULL, 'GPC2012F109', '超音波熔接机', '20KG', '上海荣臻塑胶焊接设备厂', '1.4', NULL, '2012-07-04', NULL, '清洗间', NULL, NULL, '徐先生:18616180365', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829517328386, NULL, NULL, 'GPC2012G110', '自动绕线扎线机', 'BOQO2000', '东莞市博强自动化设备有限公司', NULL, NULL, '0012-08-08', '4', '前加工线', NULL, NULL, '邹海军0769-86313913', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829525716994, NULL, NULL, 'GPC2012F120', '电动单梁起重机', 'LD10T-10.30MAB', '上海捷矿起重设备有限公司', NULL, NULL, '2012-10-31', NULL, '工程中心', NULL, NULL, '王跃涛 13816957986', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829534105602, NULL, NULL, 'GPC2012H121', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829546688514, NULL, NULL, 'GPD2007H001', '配电柜', 'XL-21', '上海诺定电气成套制造有限公司', NULL, NULL, '2007-10-05', NULL, '制造课', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829559271426, NULL, NULL, 'GPD2012H002', '配电柜', 'XL-21', '上海诺定电气成套制造有限公司', NULL, NULL, '2007-10-05', NULL, '制造课', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829567660034, NULL, NULL, 'GPD2012A003', '电子配电设备', NULL, '上海青浦花桥电力安装有限公司', NULL, NULL, '2012-12-20', NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829576048642, NULL, NULL, 'GPE1998E001', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829584437250, NULL, NULL, 'GPE1998E002', '工作台', 'SLW-B10', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '检包线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829592825857, NULL, NULL, 'GPE2006H004', '工作台(封灌间)', '/', '温岭市研华自动化设备有限公司', NULL, NULL, NULL, NULL, '封灌间', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829605408770, NULL, NULL, 'GPE2006H005', '货架(重)', '150*485*200', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829617991681, NULL, NULL, 'GPE2006G006', '工作台(金工间)', '/', '/', '0', NULL, NULL, NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829626380289, NULL, NULL, 'GPE2006H026', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829638963202, NULL, NULL, 'GPE2006H027', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829647351810, NULL, NULL, 'GPE2006E029', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829655740418, NULL, NULL, 'GPE2006H030', '货架(中)', '60*730*200', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829668323329, NULL, NULL, 'GPE2006H031', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829676711938, NULL, NULL, 'GPE2006H032', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829685100546, NULL, NULL, 'GPE2006H033', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829693489154, NULL, NULL, 'GPE2006H034', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829701877762, NULL, NULL, 'GPE2006H035', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829710266369, NULL, NULL, 'GPE2006H036', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829718654977, NULL, NULL, 'GPE2006H037', '货架(中)', '60*730*200', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829731237889, NULL, NULL, 'GPE2007E038', '工作台', '/', '/', '0', NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829739626497, NULL, NULL, 'GPE2007F039', '贴片机用料车', '/', 'JUKI', '0', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 A', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829748015105, NULL, NULL, 'GPE2007F040', '贴片机用料车', '/', 'JUKI', '0', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 B', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829760598018, NULL, NULL, 'GPE2008H041', 'FEEDER存储车', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-02-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 A', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829768986626, NULL, NULL, 'GPE2008F042', '贴片机用料车', '/', 'JUKI', '0', NULL, '2008-04-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 C', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829781569537, NULL, NULL, 'GPE2008H043', 'FEEDER存储车', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-06-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 B', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829794152450, NULL, NULL, 'GPE2008G044', '光电系列调试线', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-09-01', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829798346754, NULL, NULL, 'GPE2009G045', '货架', '/', '上海钢德仓储设备有限公司', '0', NULL, '2009-01-01', NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '组', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829810929665, NULL, NULL, 'GPE2009G046', '中型货架', '/', '/', '0', NULL, '2009-04-22', NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829823512578, NULL, NULL, 'GPE2010H047', 'FEEDER存储车', '/', '苏州德众电子科技有限公司', '0', NULL, '2008-02-01', NULL, 'SMT', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 C', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829831901186, NULL, NULL, 'GPE2011E048', '中型货架', 'L1480*D600*H1600', '上海钢德仓储设备有限公司', '0', NULL, '2011-07-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829840289794, NULL, NULL, 'GPE2011B049', 'U型工作台', NULL, '上海闵坚铝业有限公司', '0', NULL, '2011-08-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829869649922, NULL, NULL, 'GPE2011F050', '推车', NULL, '上海闵坚铝业有限公司', '0', NULL, '2011-08-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829886427137, NULL, NULL, 'GPE2012G051', '贴片机用料车', '/', 'JUKI', '0', NULL, '2012-05-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829903204354, NULL, NULL, 'GPE2012H052', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829915787266, NULL, NULL, 'GPE2012H053', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829928370177, NULL, NULL, 'GPE2012H054', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829936758786, NULL, NULL, 'GPE2012H055', '托盘支架', 'KE-2070', '苏州沃瑞特电子科技有限公司', NULL, NULL, '2012-10-17', NULL, 'SMT', NULL, NULL, '0512-62937816', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829949341698, NULL, NULL, 'GPE2013H056(1-3)', '中型货架', 'L1800*W600*H2000托四五层板', '苏州市美德仓储', NULL, NULL, '2013-02-20', NULL, '材料仓库', NULL, NULL, '共3台总价10256.4元', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829961924610, NULL, NULL, 'GPE2013H057', '中型货架', 'L1800*W600*H2000托三五层板', '苏州市美德仓储', NULL, NULL, '2013-02-21', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829974507521, NULL, NULL, 'GPF2006H001', '除湿机', 'DH-890C', '常州市山岛电器有限公司', '1.5', NULL, '2006-06-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829987090433, NULL, NULL, 'GPF2006D002', '恒温室', NULL, '温岭市研华自动化设备有限公司', '10', NULL, '2006-06-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829999673346, NULL, NULL, 'GPF2011H004', '除湿机', 'DH-890C', '常州市川岛电器有限公司', '1.5', NULL, '2011-08-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830012256257, NULL, NULL, 'GPF2012A005', '空调设备', NULL, '上海帅乐电器有限公司', NULL, NULL, '2012-12-28', NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830024839170, NULL, NULL, 'GPF2012B006', '机房系统设备', NULL, '上海天与信息科技有限公司', NULL, NULL, NULL, NULL, '老楼二楼机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830037422081, NULL, NULL, 'GPG1999H001', '剪板机', 'Q11-1X720', '浙江温州市东屿轻工机械厂', '0', NULL, '1999-06-01', NULL, '清洗间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830045810690, NULL, NULL, 'GPG2002G002', '手动点胶机', 'JBE1113', '美国飞士能', NULL, NULL, '2002-03-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830054199298, NULL, NULL, 'GPG2005H004', '条形码标签机', 'OF-863P', NULL, NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830070976514, NULL, NULL, 'GPG2005F005', '标签打印机', 'X-3000+', '台湾ARGOX Information CO.,Ltd', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830083559425, NULL, NULL, 'GPG2006H006', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '组调三线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830104530946, NULL, NULL, 'GPG2006H007', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830112919554, NULL, NULL, 'GPG2007H010', '标签打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, '黄建华:13671512530', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830221971458, NULL, NULL, 'GPG2007H011', '显微镜', 'MJ-CP205', '舜宇', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830242942978, NULL, NULL, 'GPG2007F012', '标签打印机', '110XiIII', 'USA', '0.35', NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830255525890, NULL, NULL, 'GPG2007H013', '手动液压车', '/', '/', NULL, NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830263914497, NULL, NULL, 'GPG2007H014', '手动液压车', 'CTY2000', '上海倍力机械制造有限公司', NULL, NULL, '2007-03-01', NULL, '材料仓库', NULL, NULL, '021-58172425/58172431', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830276497410, NULL, NULL, 'GPG2008H016', '标签打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '研发部', NULL, NULL, '黄建华:13671512530', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2023.07.04制造课调到研发'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830289080322, NULL, NULL, 'GPG2008H017', '工具车', 'ELA-185MA', '天钢金属(上海)有限公司', '0', NULL, '2008-03-01', NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830310051842, NULL, NULL, 'GPG2008G018', '数显测微头', '164-161', '日本三丰', NULL, NULL, '2008-03-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830326829057, NULL, NULL, 'GPG2008G019', '防静电承重推车', '/', '上海佰斯特电子工程有限公司', '0', NULL, '2008-04-01', NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830347800578, NULL, NULL, 'GPG2008H020', 'SMD零件计数器', 'CR-1000', '深圳市创精锐电子有限公司', NULL, NULL, '2008-05-01', NULL, '材料仓库', NULL, NULL, '0755-27699709 27448637', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830364577794, NULL, NULL, 'GPG2009H021', '激光打标机旋转电机', '/', '上海镭天激光设备有限公司', NULL, NULL, '2009-03-09', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830377160706, NULL, NULL, 'GPG2009H022', '整形机', '卧式', '上海山晟贸易有限公司', NULL, NULL, '2009-06-16', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830385549313, NULL, NULL, 'GPG2009H023', '整形机', '立式', '上海山晟贸易有限公司', NULL, NULL, '2009-06-16', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830398132226, NULL, NULL, 'GPG2010G024', 'Tyscope仿真器', 'K9 V0.91', '广州致远电子有限公司', NULL, NULL, '2010-03-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830406520834, NULL, NULL, 'GPG2010H025', '气动剥皮机', 'QH-3F', '苏州琦辉电子设备厂', NULL, NULL, '2010-05-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830414909441, NULL, NULL, 'GPG2010H026', '气动剥皮机', 'QH-310', '苏州琦辉电子设备厂', NULL, NULL, '2010-05-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830423298049, NULL, NULL, 'GPG2011H027', '气动剥皮机', 'QH-3F', '苏州琦辉电子设备厂', NULL, NULL, '2011-04-26', NULL, '生产技术部', NULL, NULL, '戴工 13295114147 0512-67221217无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830435880961, NULL, NULL, 'GPG2011H028', '标签打印机', 'BTP-6300I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830444269569, NULL, NULL, 'GPG2011E029', '焊接平台', '2000*5000', '上海泊刃机械工具有限公司', '0', NULL, '2011-06-29', NULL, '工程中心', NULL, NULL, '021-63503666 商经理', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830456852482, NULL, NULL, 'GPG2011H030', '烟雾净化过滤系统', 'QUICK6102', '常州速骏电子有限公司', NULL, NULL, '2011-05-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830465241090, NULL, NULL, 'GPG2011H031', '伺服电机及驱动器', 'LLOST4030/TL-12F', '/', NULL, NULL, '2011-09-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830473629697, NULL, NULL, 'GPG2011H032', '自动滴胶机', 'WJ118', '/', NULL, NULL, '2011-04-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830482018306, NULL, NULL, 'GPG2006H033', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '组调二线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830494601217, NULL, NULL, 'GPG2011F034', 'UV固化机(小)', 'UP104', '依瓦塔(上海)精密光电有限公司', NULL, NULL, '2011-12-01', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830502989826, NULL, NULL, 'GPG2012F035', 'FEEDER 校正仪', '/', '苏州德众电子科技有限公司', NULL, NULL, '2012-05-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830511378434, NULL, NULL, 'GPG2012H036', '全自动SMT高速零件可调计数器', 'FY-610', '上海飞元电子科技有限公司', '0.03', NULL, '2012-07-24', NULL, 'SMT', NULL, NULL, '于经理:021-57816567', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830523961345, NULL, NULL, 'GPA2013E196', 'LCR电桥测试仪', '3532-50HIOKI', 'HIOKI', NULL, NULL, '2013-01-12', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-03-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830536544258, NULL, NULL, 'GPC2013F001', '卧式金属带锯床', 'GW4028B', '浙江晨龙', NULL, NULL, '2013-07-04', '1', '工程中心', NULL, NULL, '周经理 13816911268', NULL, NULL, NULL, '2013-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海鑫渤机电设备有限公司', NULL, NULL, NULL, NULL, '扭力扳手1把套筒头1个螺丝刀+1把·-1把内六角扳手1套开口扳手12-14 1把17-19 1把随机锯条一条备用1条o型圈2个工具箱1个随机架1套交刘文俊使用说明书1份合格证明书1份保修卡1份交品质部受控2013.07.11'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830549127169, NULL, NULL, 'GPC2013G001', '超声波清洗机', '2Y-1024', '上海早盈精密清洗机械有限公司', NULL, NULL, '2013-07-01', '1', '金工车间', NULL, NULL, '57108232', NULL, NULL, NULL, '2013-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830557515777, NULL, NULL, 'GPC2013E001', '自动焊接机', 'QUICK9320A', '常州快克锡焊股份有限公司', NULL, NULL, '2013-08-09', '1', '组调二线', NULL, NULL, '张晶13611926303 0519 86225678', NULL, NULL, NULL, '2013-08-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '内六角扳手1.5-6MM'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830570098689, NULL, NULL, 'GPA2013F002', '示波器', 'RIGOL DS4014', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS4A153000499'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830582681602, NULL, NULL, 'GPA2013H003', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153000771'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830591070209, NULL, NULL, 'GPA2013H004', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153100780'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830599458817, NULL, NULL, 'GPA2013H005', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153000727'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830607847425, NULL, NULL, 'GPC2013F006', '半自动堆高机', 'BT00758', '上海罗倍拓工业设备有限公司', NULL, NULL, '2013-08-31', '1', '生产技术部', NULL, NULL, '021-57703699', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海罗倍拓工业设备有限公司', '台', NULL, NULL, NULL, '使用说明书1份 充电电源1个(2023.02.21资材转生技)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830616236033, NULL, NULL, 'GPC2013H007', '半自动捆包机', 'XT8020(东莞)', '旭田包装机械有限公司', NULL, NULL, '2013-09-02', '1', '新车间2楼仓库', NULL, NULL, '021-66112777', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '旭田包装机械有限公司', '台', NULL, NULL, NULL, '使用说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830624624641, NULL, NULL, 'GPE2013H008(1-14)', '中型货架', '一拖一型14组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830637207553, NULL, NULL, 'GPE2013H009(1-19)', '中型货架', '一拖二型19组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830641401858, NULL, NULL, 'GPE2013H010(1-7)', '中型货架', '一拖三型7组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830649790465, NULL, NULL, 'GPE2013H011(1-14)', '轻型货架', '五层空100KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830658179074, NULL, NULL, 'GPC2013H012', '蠕动式点胶机', 'TP-50蠕动式点胶机', '深圳市腾盛工业设备有限公司', NULL, NULL, '2013-08-08', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳市腾盛工业设备有限公司', '台', NULL, NULL, NULL, '2024.05.13转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830670761986, NULL, NULL, 'GPC2013H013', '蠕动式点胶机', 'TP-50蠕动式点胶机', '深圳市腾盛工业设备有限公司', NULL, NULL, '2013-08-08', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳市腾盛工业设备有限公司', '台', NULL, NULL, NULL, '操作说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830679150594, NULL, NULL, 'GPC2013H014', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830683344897, NULL, NULL, 'GPC2013H015', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830700122114, NULL, NULL, 'GPC2013H016', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830712705025, NULL, NULL, 'GPC2013G017', '多功能机床', '西马特M2-550', '上海富沛森电子商务有限公司', NULL, NULL, '2013-09-23', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-11-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海富沛森电子商务有限公司', '台', NULL, NULL, NULL, '操作说明书1份工具内六角5个开口扳手4个固定顶针2个勾扳手1个精密平口钳1个'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830716899330, NULL, NULL, 'GPE2013G018(1-8)', 'EMC实验室全木工作台', '1000*900*800四台1700*900*800两台1500*400*800两台600*600一台', '上海满宏家具厂', NULL, NULL, '2013-08-02', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2013-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海满宏家具厂', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830725287938, NULL, NULL, 'GPA2013E019', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2013-08-27', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, '2023.12.21转研发'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830737870850, NULL, NULL, 'GPA2013E020', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2013-08-27', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830746259457, NULL, NULL, 'GPC2013D021', '全自动钢网清洗机', 'K-1800', '深圳凯尔迪光电科技有限公司', NULL, NULL, '2013-07-08', '1', 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2013-12-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳凯尔迪光电科技有限公司', '台', NULL, NULL, NULL, '操作说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830758842369, NULL, NULL, 'GPE2013F022(1-2)', '实验室中央工作台', '3750*1500*850', '上海兢美实验室设备有限公司', NULL, NULL, '2013-09-29', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海兢美实验室设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830767230977, NULL, NULL, 'GPE2013H023(1-12)', '实验室中央工作台 实验凳', '圆皮凳子', '上海兢美实验室设备有限公司', NULL, NULL, '2013-09-29', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海兢美实验室设备有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830779813890, NULL, NULL, 'GPC2014H014', '空气净化器', 'KJT1352A', '亚都', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830788202497, NULL, NULL, 'GPA2014F001', '示波器', 'RIGOL DS4014(大四通道)', '上海玛辛电子有限公司', NULL, NULL, '2013-12-19', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS4A153000499,2024.11.28故障停用转设备管理,预转安徽使用,原编号GPA2012F131'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830800785410, NULL, NULL, 'GPA2014H015', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '0.1-0.6Mpa 0.05级'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830809174018, NULL, NULL, 'GPA2014A001', '智能雷击浪涌发生器', 'EMS61000-5A(1.2/50µs)', '杭州,远方', NULL, NULL, '2013-08-02', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2013-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830817562626, NULL, NULL, 'GPA2014G001', ' 交流变频稳压电源', 'GK10030', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830825951233, NULL, NULL, 'GPA2014F001-1', '高压脉冲实验仪', 'EMS255', '杭州,远方', NULL, NULL, NULL, '3', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830838534145, NULL, NULL, 'GPA2014E001', '工频磁场发生器', 'EMS61000-8K-500', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830846922753, NULL, NULL, 'GPA2014E002', '周波跌落发生器', 'EMS61000-11K', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830851117058, NULL, NULL, 'GPA2014E003', '高可靠交流变频稳压电源', 'GK10150', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830859505666, NULL, NULL, 'GPA2014A002', 'GTEM室', '500', '德国,Frankonia', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830872088577, NULL, NULL, 'GPA2014D001', '信号源', 'PMM3010', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '系统2018年升级被北京信测收回,被替换购买3030-01信号源'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830884671490, NULL, NULL, 'GPG2014E004', '传导抗扰度一体机', 'CDG 6000-75', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830893060098, NULL, NULL, 'GPA2014D002', '功率放大器', 'Ophir5124', '美国,Ophir', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830901448705, NULL, NULL, 'GPA2014E004', '定向耦合器', 'PMM1', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830914031617, NULL, NULL, 'GPA2014D003', '功率计', 'PMM6630', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830922420226, NULL, NULL, 'GPA2014D004', '功率计', 'PMM6630', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830930808834, NULL, NULL, 'GPA2014D005', '场强探头', 'EP601', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830943391745, NULL, NULL, 'GPA2014H001', '衰减器', '6dB', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830955974657, NULL, NULL, 'GPA2014F001-2', '耦合去耦网络', 'M2-M3', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830964363266, NULL, NULL, 'GPA2014G002', '射频线缆', 'Times(EMS)', '美国,Times', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830972751874, NULL, NULL, 'GPA2014D006', '电磁钳', 'EMCL', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830981140482, NULL, NULL, 'GPA2014F002', 'CCTV', 'Panasonic WV-CP480', '日本,松下', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830989529090, NULL, NULL, 'GPG2014E001', 'EMS抗扰度测试软件', 'IS', '意大利,xutec', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830997917697, NULL, NULL, 'GPG2014E002', 'EMI抗扰度测试软件', 'ES', '意大利,xutec', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831006306306, NULL, NULL, 'GPG2014E003', '19寸机柜', '/', '/', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '/', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831018889218, NULL, NULL, 'GPA2013D024', '高分辨率摄像机', 'OP VCS ASSY 27MM', 'JUKI', NULL, NULL, NULL, '1', 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州沃瑞特电子科技有限公司', '套', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831027277826, NULL, NULL, 'GPE2014G026(1-2)', '非标模具货架', 'W3064*D600*H2200 3格4层', '上海诺库物流设备有限公司', NULL, NULL, '2013-11-29', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海诺库物流设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831039860738, NULL, NULL, 'GPC2013C027', '立式注塑机', 'AT-550S(单滑板)', '杭州爱科机械有限公司', '20', NULL, '2014-01-06', '1', '制造课', NULL, NULL, '18621879811吴建伟', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '杭州爱科机械有限公司', '台', NULL, NULL, NULL, '说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831048249346, NULL, NULL, 'GPC2013H028', '干燥机', 'WSDJ-25', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '干燥机2000+脚架600 说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831060832258, NULL, NULL, 'GPC2013H029', '吸料机', 'WSAL-700G', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '吸料机2500+吸料机盒240说明书1份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831069220865, NULL, NULL, 'GPC2013F030', '风冷式冷水机', 'WSIA-4-P', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '2023.01.10转移到安徽兰宝。于2024.07.05又转移到上海'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831077609473, NULL, NULL, 'GPC2013G031', '油式模温机', 'WSTO-6-200ºC', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '安徽兰宝', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '2023.01.10转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831090192386, NULL, NULL, 'GPC2014H002(1-2)', '电焊机', 'WS-315D', '佛山市顺德区雄德业焊接设备有限公司', NULL, NULL, '2014-02-01', '', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-02-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '佛山市顺德区雄德业焊接设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831098580994, NULL, NULL, 'GPE2014H003(1-8)', '双开门工具车', 'LA111806', '上海鑫明实业有限公司', NULL, NULL, '2014-02-01', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-02-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海鑫明实业有限公司', '个', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831111163906, NULL, NULL, 'GPG2014H004', '液压车', '奥津 NP15-510', '上海禹尧机电科技有限公司', NULL, NULL, '2014-03-01', NULL, '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海禹尧机电科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831119552513, NULL, NULL, 'GPG2007H032', '微型手动冲床', '文东 1.5T', '文东', NULL, NULL, NULL, NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831127941121, NULL, NULL, 'GPA2011H152', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831140524034, NULL, NULL, 'GPA2012H085', '交流调压台', '/', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831153106945, NULL, NULL, 'GPA2006G033', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831161495554, NULL, NULL, 'GPG2013H001', '多功能塑料薄膜印字(印字)封口机', 'FR-900', '上海申越包装机械制造有限公司', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831174078466, NULL, NULL, 'GPA2010G108', '耐压力测试仪', 'DBD018', '/', NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831182467073, NULL, NULL, 'GPA2010G109', '强磁场发生仪', '/', '/', NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831190855682, NULL, NULL, 'GPA2013H013', '电脑加速老练试验机', 'DJ3000', NULL, NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831203438594, NULL, NULL, 'GPE1998E005', '插件线工作台', '8m', '温岭市研华自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831211827202, NULL, NULL, 'GPA2008G077', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, '2008-08-01', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831224410114, NULL, NULL, 'GPA2011H166', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', NULL, NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831236993026, NULL, NULL, 'GPC1998H047', '台式钻床', 'Z4112', '/', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831245381634, NULL, NULL, 'GPC1995H008', '台式钻床', 'Z406', '/', NULL, NULL, NULL, NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831253770242, NULL, NULL, 'GPC2011E082', '台式微型冲床', 'JOH075', '台州金鼎电动工具制造有限公公司', NULL, NULL, NULL, NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831266353153, NULL, NULL, 'GPC2009C001', '钻铣床', 'XZS 4020', '黄山台钻有限公司', NULL, NULL, NULL, '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831274741761, NULL, NULL, 'GPC2014H004', '自动套丝机', '71T-R2', '杭州宁达套丝机厂', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831287324674, NULL, NULL, 'GPC2014H005', '等离子切割机', 'LCK-60', '上海通用电焊机', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831299907585, NULL, NULL, 'GPC2010D057', '自动棒材送料机', '/', '中意机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831308296193, NULL, NULL, 'GPC2004H012', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831320879105, NULL, NULL, 'GPC2006H009', '仪表车床', 'CJ0645', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831333462018, NULL, NULL, 'GPC2011H008', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831341850626, NULL, NULL, 'GPC2011H009', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831354433537, NULL, NULL, 'GPC2011H010', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831367016450, NULL, NULL, 'GPC2011H011', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831379599362, NULL, NULL, 'GPC2011H012', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原上海金工间使用,2024.11.07转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831392182273, NULL, NULL, 'GPC2011H013', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原上海金工间使用,2024.11.07转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831417348098, NULL, NULL, 'GPC2011H014', '仪表车床', 'CJ0645', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831438319618, NULL, NULL, 'GPC2013H022', '台式攻钻两用机', 'Z34112', '杭州双龙机械有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831450902529, NULL, NULL, 'GPC2012G096', '冷冻式干燥机', 'HY-50HF', '上海韩岩净化', NULL, NULL, NULL, '1', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831467679746, NULL, NULL, 'GPC2012G095', '储气罐', '2/1.0', '上海申江压力容器有限公司', NULL, NULL, NULL, '1', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831476068354, NULL, NULL, 'GPG2014H005', '手动液压车', '龙工2500kg', '龙工叉车', NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831488651266, NULL, NULL, 'GPF2012H084', '加湿机', 'XH-M2500', '活仕', NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831501234178, NULL, NULL, 'GPC2008H016', '台钻', 'ZHX-13', NULL, NULL, NULL, NULL, NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831509622785, NULL, NULL, 'GPA2014C001', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '4', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831522205698, NULL, NULL, 'GPA2014C002', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831538982914, NULL, NULL, 'GPA2014C003', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831551565826, NULL, NULL, 'GPA2014C004', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831564148737, NULL, NULL, 'GPA2014C005', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831572537346, NULL, NULL, 'GPA2014C006', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽,2024.10.14搬迁时候,又出现上海,再次转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831585120257, NULL, NULL, 'GPA2014C007', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831597703169, NULL, NULL, 'GPA2014C008', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831610286082, NULL, NULL, 'GPA2014C009', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831622868993, NULL, NULL, 'GPA2014C016', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831631257602, NULL, NULL, 'GPA2014E008', '二次元影像测量仪', 'HA-IMI-2010', '鑫准精密测量(仪器)上海有限公司', NULL, NULL, '2014-02-21', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '鑫准精密测量(仪器)上海有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831643840514, NULL, NULL, 'GPA2014E005', '智能型静电发生器', 'EMS61000-2A', '杭州远方', NULL, NULL, '2013-12-31', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '设备老化返修2次无果,待报废,报废流程已走'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831656423425, NULL, NULL, 'GPA2014E006', '智能型群脉冲发生器', 'EMS61000-4B', '杭州远方', NULL, NULL, NULL, NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '设备老化报废,废旧设备在研发保存,2024.11已走流程'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831664812033, NULL, NULL, 'GPA2014H002', '群脉冲电容耦合夹', 'EFTC-2', '杭州远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831677394945, NULL, NULL, 'GPG2014H001', '群脉冲试验环境', '/', '杭州远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831689977857, NULL, NULL, 'GPC2014H024', '钢材机', 'SCG3-355', '雷顿', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831702560770, NULL, NULL, 'GPA2014H003', '氯气分析仪', 'WT140/NH3', '上海咏驿仪器仪表有限公司', NULL, NULL, '2014-04-28', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海咏驿仪器仪表有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831715143681, NULL, NULL, 'GPA2014G003', 'TVOC检测仪', 'SNQ000.0-1000PPM', '上海富瞻环保科技有限公司', NULL, NULL, '2014-05-04', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海富瞻环保科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831723532289, NULL, NULL, 'GPA2014G004', '活塞式压力计', 'XDJB-60T', '西安西德仪器仪表有限公司', NULL, NULL, '2013-12-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '西安西德仪器仪表有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831736115202, NULL, NULL, 'GPA2006H184', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831748698114, NULL, NULL, 'GPA2006H185', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831757086721, NULL, NULL, 'GPA2006H186', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831769669633, NULL, NULL, 'GPC1999H057', '空压机', 'PUMA', NULL, NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831778058242, NULL, NULL, 'GPA2014H004', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-05-01', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831790641153, NULL, NULL, 'GPA2011H058', '数显直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, NULL, NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831799029762, NULL, NULL, 'GPA2014H018', '邵氏D硬度计', 'TH210', '北京时代淘宝科技发展有限公司', NULL, NULL, '2014-04-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '北京时代淘宝科技发展有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831807418370, NULL, NULL, 'GPA2014H005', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-05-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831815806978, NULL, NULL, 'GPE2014H024', '超净工作台', 'JB-CJ-2FD', '苏州佳宝净化工程设备有限公司', NULL, NULL, '2014-05-21', '4', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州佳宝净化工程设备有限公司', '台', NULL, NULL, NULL, '2024.11.28研发闲置,已走调拨单,放在金工间闲置设备区域'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831832584193, NULL, NULL, 'GPA2014G005', '风速仪', '6036-BC', '上海浮华检测仪器有限公司', NULL, NULL, '2014-06-09', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海浮华检测仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831840972802, NULL, NULL, 'GPC2014F001', '电脑剥线机', 'HRG-2803-4', '昆山宏日钢自动化设备有限公司', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831853555713, NULL, NULL, 'GPC2014G001', '真空包装机', 'VS-600', '上海旭田机械设备有限公司', NULL, NULL, '2014-06-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831866138626, NULL, NULL, 'GPC2014E001', '电脑剥线机', 'ZDBX-6', '嘉兴君权自动化设备有限公司', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '嘉兴君权自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831878721537, NULL, NULL, 'GPA2014H019', '数显扭力起子', 'SH-DMSD50', '上海帝尔电子科技有限公司', NULL, NULL, '2014-06-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831887110146, NULL, NULL, 'GPA2014H006', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-07-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831899693058, NULL, NULL, 'GPC2014H025', '胶带切割机', 'ZCUT-870(进口)', '韩国进口', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海本善电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831908081665, NULL, NULL, 'GPC2014C001', '立式升降台铣床', 'X5042', '皖南机床厂', NULL, NULL, '2014-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海胡润机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831920664578, NULL, NULL, 'GPC2014E002', '普通车床', 'CA6140B/A', '沈阳第一机床厂', NULL, NULL, '2014-07-01', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海旭深机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831933247490, NULL, NULL, 'GPA2014H007', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831941636097, NULL, NULL, 'GPA2014H010', '氨气检测仪', 'GT901-NH3', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831954219010, NULL, NULL, 'GPA2014G006', '泵吸式臭氧检测报警仪', 'GT901-03', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831970996226, NULL, NULL, 'GPA2014H011', '泵吸式甲醛检测仪', 'GT901-CH20', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831983579137, NULL, NULL, 'GPC2014H023', '电焊机', 'BX6-160', '凯尔达电焊机', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831996162050, NULL, NULL, 'GPA2014F003', '电磁流量计', '10W25-UFGA1AA0A5AA', '恩德斯豪斯德国公司', NULL, NULL, '2014-06-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海恩德斯豪斯自动化设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832008744961, NULL, NULL, 'GPA2014D007', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2014-07-28', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海象锦国际贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832021327873, NULL, NULL, 'GPA2014D008', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2014-07-28', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海象锦国际贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832029716482, NULL, NULL, 'GPC2014H026', '切管机', 'YS-120', '深圳源尚自动化技术有限公司', NULL, NULL, '2014-08-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳源尚自动化技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832042299393, NULL, NULL, 'GPC2014C002', '空心线圈绕线机', 'BXC06', '浙江田中精机股份有限公司', NULL, NULL, '2014-08-15', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '浙江田中精机股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832054882306, NULL, NULL, 'GPC2014G002', '油盅移印机', 'SPC-814E', '上海盈晖机械设备有限公司', NULL, NULL, '2014-08-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海盈晖机械设备有限公司', NULL, NULL, NULL, NULL, '2024.05.13转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832067465218, NULL, NULL, 'GPA2014H020', '电子张力测试仪', 'Y2301', '常州市第一纺织设备有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '常州市第一纺织设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832080048129, NULL, NULL, 'GPA2014F004', '同心同轴度仪', 'K1-10', '上海滕明工贸有限公司', NULL, NULL, '2014-08-18', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '美国环球Universal', '台', NULL, NULL, NULL, '表2只,说明书一份'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832088436737, NULL, NULL, 'GPE2014H001', '铝型材工作台', '218cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832096825346, NULL, NULL, 'GPE2014H002', '铝型材工作台', '218cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832109408257, NULL, NULL, 'GPE2014H004', '铝型材工作台', '180cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832121991170, NULL, NULL, 'GPA2014F005', '手持式防爆智能粉尘检测仪', 'JC-1000', '青岛精诚仪器仪表有限公司', NULL, NULL, '2014-08-15', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '青岛精诚仪器仪表有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832134574081, NULL, NULL, 'GPF2014H001', '除湿机', 'DH20EB', '格力电器', NULL, NULL, '2014-08-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '穆勒电气专营店', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832147156993, NULL, NULL, 'GPA2014H021', '超声波清洗器', 'SK5200BT', '上海科导超声仪器有限公司', NULL, NULL, '2014-08-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海纳诺实业有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832155545602, NULL, NULL, 'GPA2014H022', '压力表校验器', 'YJY-600A (0-60Mpa)', '上海良磊仪器仪表销售有限公司', NULL, NULL, '2013-07-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海自动化仪表股份有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832168128513, NULL, NULL, 'GPA2014H023', '压力表校验器', 'YJY-600A (0-60Mpa)', '上海良磊仪器仪表销售有限公司', NULL, NULL, '2014-07-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海自动化仪表股份有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832180711426, NULL, NULL, 'GPC2014H001', '鼓风数显恒温干燥箱', 'DHG-9140A', '上虞市道墟镇恒幸仪器设备厂', '1kw', NULL, '2014-06-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上虞市道墟镇恒幸仪器设备厂', NULL, NULL, NULL, NULL, '原材料库使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832193294337, NULL, NULL, 'GPC2014H003', '鼓风数显恒温干燥箱', 'DHG-9140A', '上虞市道墟镇恒幸仪器设备厂', '1kw', NULL, '2014-06-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上虞市道墟镇恒幸仪器设备厂', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832205877250, NULL, NULL, 'GPC2014H027', '502胶点胶机', '410型', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832218460161, NULL, NULL, 'GPC2014H028', '502胶点胶机', '410型', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, '2024.05.13转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832231043074, NULL, NULL, 'GPC2014H029', '精密手动点胶机', 'JBE1113', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832239431681, NULL, NULL, 'GPC2014H030', '精密手动点胶机', 'JBE1113', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832247820290, NULL, NULL, 'GPE2014F001', '设备台', '/', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832260403202, NULL, NULL, 'GPE2014H005', '钢瓶柜', '1000*450*1800mm', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832272986114, NULL, NULL, 'GPE2014G001', '通风柜', '1500*850*2350mm', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832281374721, NULL, NULL, 'GPA2014G007', '台式六位半数字电流表', '34461A', '上海精测电子有限公司', NULL, NULL, '2014-08-06', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832293957633, NULL, NULL, 'GPA2014H024', '电动比例阀', 'EV-25PCUN16RPF', '武汉格莱特控制阀有限公司', NULL, NULL, '2014-05-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '武汉格莱特控制阀有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832302346241, NULL, NULL, 'GPE2014H006(1-3', '推车', '自制(放周转箱)', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832314929153, NULL, NULL, 'GPC2014F002', '标准型半电动推高车', 'BTO5309', '上海罗倍拓工业设备有限公司', NULL, NULL, '2014-09-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海罗倍拓工业设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832327512066, NULL, NULL, 'GPC2014B001', 'CNC数控铣床', 'TE-850', '厦门大金机械有限公司', '8', NULL, '2014-08-20', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '厦门大金机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832335900674, NULL, NULL, 'GPC2014A001', 'CNC精密自动车床', 'BO325-II', '津上精密机床(浙江)有限公司', NULL, NULL, '2014-09-15', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海万助机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832352677889, NULL, NULL, 'GPA2014H025', '电子分析天平', 'FA2004', '上海恒平科学仪器有限公司', NULL, NULL, '2014-09-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '卖仪科学仪器(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832361066497, NULL, NULL, 'GPC2014E003', '桌面型点胶机', '331型', '上海本善科技有限公司', NULL, NULL, '2014-09-23', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海本善科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832373649410, NULL, NULL, 'GPC2014B002', '分板机', 'R-S168CS1', '和椿自动化设备(上海)有限公司', NULL, NULL, '2014-08-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州昆创电子科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832386232322, NULL, NULL, 'GPA2014H026', 'PH 计', 'STARTER2100/ 3C Pro-F', '奥豪斯', NULL, NULL, '2014-09-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '卖仪科学仪器(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832394620930, NULL, NULL, 'GPF2014H002', '高压水枪', '7480G', '上海克美机械设备有限公司', NULL, NULL, '2014-11-25', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海克美机械设备有限公司', '台', NULL, NULL, NULL, '水管20米'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832411398145, NULL, NULL, 'GPA2014H027', '烟气湿度检测仪', 'testo 635-1', '德国德图', NULL, NULL, '2014-07-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海仪博仪器有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832423981057, NULL, NULL, 'GPA2014H028', '高精度万用表', 'F289C', 'FLUKE(上海)', NULL, NULL, '2014-11-28', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832436563969, NULL, NULL, 'GPA2014G008', '数字存储晶体管特性图示仪', 'WQ4828', '杭州五强电子有限公司', NULL, NULL, '2014-12-02', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '淘宝仪器仪表折扣店', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832440758274, NULL, NULL, 'GPA2014E009', '紫外可见分光光度计', 'UV1800', '岛津', NULL, NULL, '2014-07-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, ' 上海纳锘实业有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832457535489, NULL, NULL, 'GPC2014B003', 'CNC全自动绕线机', 'MX1804', '浙江田中精机股份有限公司', NULL, NULL, '2014-12-12', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '浙江田中精机股份有限公司', NULL, NULL, NULL, NULL, '治具2套,说明书'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832465924098, NULL, NULL, 'GPA2014G009', '氢空一体机', 'XYAH-300', '上海精密仪器仪表有限公司', NULL, NULL, '2014-08-28', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精密仪器仪表有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832478507009, NULL, NULL, 'GPA2014A003', '气相色谱质谱联用仪', 'GCMS2010SE', '日本岛津', NULL, NULL, '2014-07-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海纳锘实业有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832491089921, NULL, NULL, 'GPA2014C010', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.05.20转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832503672834, NULL, NULL, 'GPA2014C011', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832516255746, NULL, NULL, 'GPA2014C012', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832524644353, NULL, NULL, 'GPA2014C013', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832537227265, NULL, NULL, 'GPA2014C014', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832549810177, NULL, NULL, 'GPA2014C015', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832562393089, NULL, NULL, 'GPA2014H029', '压力变送器', 'PDS423H-1HS0-A2DN', '重庆川仪自动化股份有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '重庆博川仪表有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832574976001, NULL, NULL, 'GPA2015H001', '压力变送器', 'V15754-HOEAME/5C2/5C4/Z2C', '上海威尔泰工业自动化股份有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '天津百菲自动化设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832587558914, NULL, NULL, 'GPG2015H001-002', 'BT50刀具车', '564*572*850', '上海众百工业设备有限公司', NULL, NULL, '2015-03-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海众百工业设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832600141825, NULL, NULL, 'GPG2015H003-005', '工具车', '564*572*850', '上海众百工业设备有限公司', NULL, NULL, '2015-03-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海众百工业设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832612724738, NULL, NULL, 'GPA2015H002', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-04-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832625307650, NULL, NULL, 'GPG2015H006', '压线钳', 'ATS-638118100', '昴氏(上海)电子贸易有限公司', NULL, NULL, '2015-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昴氏(上海)电子贸易有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832633696257, NULL, NULL, 'GPA2015H003', '双气路大气采样器/气体采样袋用采样泵', 'QCS-3000', '上海精密仪器仪表有限公司', NULL, NULL, '2015-01-28', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海精密仪器仪表有限公司', '套', NULL, NULL, NULL, '双气路大气采样器/气体采样袋用采样泵一套,1650+850=2500'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832646279169, NULL, NULL, 'GPC2015H001', '点胶机控制器', 'AD2000C', '深圳本善电子科技有限公司', NULL, NULL, '2015-03-25', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海本善电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832658862082, NULL, NULL, 'GPA2015E001', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2015-03-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832675639298, NULL, NULL, 'GPA2015H004', 'V槽残厚测量仪', 'CHL-3', '昆山高品精密仪器有限公司', NULL, NULL, '2015-04-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山高品精密仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832688222210, NULL, NULL, 'GPA2015H005', '工业实验显微镜', 'SK2100H', '深圳市赛克数码科技开发有限公司', NULL, NULL, '2015-05-22', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-06-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝电商(光仪世界)', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832700805122, NULL, NULL, 'GPG2015H007', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-05-29', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-06-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832713388034, NULL, NULL, 'GPG2015H008', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832725970946, NULL, NULL, 'GPG2015H009', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832738553857, NULL, NULL, 'GPG2015H010', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832751136769, NULL, NULL, 'GPG2015H011', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832767913986, NULL, NULL, 'GPA2004H013', '高精度传感器测试仪', 'GDC-003D', '上海兰宝传感器有限公司', NULL, NULL, '2004-01-01', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832780496897, NULL, NULL, 'GPA2004H021', '高精度传感器测试仪', 'GDC-004D', '上海兰宝传感器有限公司', NULL, NULL, '2005-01-01', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832788885506, NULL, NULL, 'GPA2015C001', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832801468418, NULL, NULL, 'GPA2015C002', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832818245633, NULL, NULL, 'GPA2015C003', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832835022850, NULL, NULL, 'GPA2015C004', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832847605761, NULL, NULL, 'GPA2015C005', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832860188674, NULL, NULL, 'GPA2015C006', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832872771586, NULL, NULL, 'GPA2015C007', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832881160193, NULL, NULL, 'GPA2015C008', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832893743105, NULL, NULL, 'GPA2015C009', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832910520321, NULL, NULL, 'GPA2015C010', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832923103234, NULL, NULL, 'GPA2015C011', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832931491842, NULL, NULL, 'GPA2015C012', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832952463361, NULL, NULL, 'GPA2015C013', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832965046274, NULL, NULL, 'GPA2015C014', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832981823490, NULL, NULL, 'GPA2015C015', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832990212098, NULL, NULL, 'GPA2015C016', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833006989313, NULL, NULL, 'GPA2015C017', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.05.19转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833023766530, NULL, NULL, 'GPA2015C018', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833040543745, NULL, NULL, 'GPA2015C019', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833053126657, NULL, NULL, 'GPA2015C020', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833065709570, NULL, NULL, 'GPA2015C021', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833187344385, NULL, NULL, 'GPA2015C022', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833204121602, NULL, NULL, 'GPA2015C023', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833254453249, NULL, NULL, 'GPA2015C024', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833350922242, NULL, NULL, 'GPA2015C025', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833397059586, NULL, NULL, 'GPA2015C026', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833426419713, NULL, NULL, 'GPA2015C027', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833451585537, NULL, NULL, 'GPA2015C028', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2023.12.12转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833485139969, NULL, NULL, 'GPA2015C029', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833506111490, NULL, NULL, 'GPA2015C030', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833531277314, NULL, NULL, 'GPA2015C031', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833552248833, NULL, NULL, 'GPA2015C032', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833577414658, NULL, NULL, 'GPA2015C033', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833606774785, NULL, NULL, 'GPA2015C034', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833631940609, NULL, NULL, 'GPA2015C035', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833648717826, NULL, NULL, 'GPA2015C036', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833669689345, NULL, NULL, 'GPA2015C037', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833682272258, NULL, NULL, 'GPA2015C038', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, 'mai', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833703243777, NULL, NULL, 'GPA2015C039', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833715826689, NULL, NULL, 'GPA2015C040', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833736798210, NULL, NULL, 'GPA2006G038', '多功能传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, '2006-09-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833757769730, NULL, NULL, 'GPA2015E002', '烟气便携式分析仪', 'testo340', '德国德图', NULL, NULL, '2015-07-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海四捷仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833770352641, NULL, NULL, 'GPA2015H006', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-08-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833782935553, NULL, NULL, 'GPA2015H007', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-08-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833795518465, NULL, NULL, 'GPA2015H008', '旋转蒸发仪+循环水真空泵', 'RE-52AA +SHZ-D(Ⅲ)防腐型', '上海垒固仪器有限公司/湖南力辰仪器科技有限公司', NULL, NULL, '2015-08-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海垒固仪器有限公司/湖南力辰仪器科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833808101377, NULL, NULL, 'GPA2015H009', '端子拉力测试仪', 'HF-500', '温州海宝', NULL, NULL, '2015-08-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海双旭电子', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833829072898, NULL, NULL, 'GPA2015C041', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833845850114, NULL, NULL, 'GPA2015C042', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833862627329, NULL, NULL, 'GPA2015C043', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833879404545, NULL, NULL, 'GPA2015C044', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833891987458, NULL, NULL, 'GPA2015C045', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833908764673, NULL, NULL, 'GPA2015C046', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833925541890, NULL, NULL, 'GPA2015C047', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833942319105, NULL, NULL, 'GPC2015D001', '四轴自动焊接机器人', 'QUICK 9534Y', '常州快克焊锡股份有限公司', NULL, NULL, '2015-06-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '常州快克焊锡股份有限公司', '台', NULL, NULL, NULL, '说明书,辅材一套,2024.10.14已转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833959096322, NULL, NULL, 'GPA2015G001', '热解析仪', 'TP-2030', '北京北分天普仪器技术有限公司', NULL, NULL, '2014-08-15', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '北京北分天普仪器技术有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833971679234, NULL, NULL, 'GPC2015D002', '真空含浸机', 'TH-5901', '苏州拓博机械设备有限公司', NULL, NULL, '2015-09-01', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州拓博机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833988456449, NULL, NULL, 'GPA2014H008', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834005233665, NULL, NULL, 'GPA2014H009', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834022010881, NULL, NULL, 'GOB2011C013', '印号机(线缆标志打印机)', 'C-210T', '佳能丽标', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834034593794, NULL, NULL, 'GPA2015H010', '便携式(手持式)二硫化碳检测仪', 'GT903-CS2', '深圳市科尔诺电子科技有限公司', NULL, NULL, '2015-10-16', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市科尔诺电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834051371010, NULL, NULL, 'GPC2015NH001', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-11-29', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834063953922, NULL, NULL, 'GPC2015NH002', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-11-29', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834101702657, NULL, NULL, 'GPA2015E003', '智能校准仪', 'HT-700A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834118479873, NULL, NULL, 'GPA2015E004', '智能校准仪', 'HT-700A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834143645697, NULL, NULL, 'GPG2015NL001-006', '中型货架', 'L1480*D600*H1600一拖二', '上海钢德仓储设备有限公司', NULL, NULL, '2015-10-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海钢德仓储设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834160422914, NULL, NULL, 'GPC2016NL001', 'EPC660评估板', 'P100 307 epc660 Evaluation Kit US', 'EPC', NULL, NULL, '2015-12-03', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海丰宝电子信息科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834173005825, NULL, NULL, 'GPG2016NL001', '数显表', 'YLM0016-XJK2L0/R0VO', '上海遥领自动化科技有限公司', NULL, NULL, '2016-01-08', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海遥领自动化科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834185588738, NULL, NULL, 'GPA2016NL001', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834202365954, NULL, NULL, 'GPA2016NL002', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834219143169, NULL, NULL, 'GPA2016NL003', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834235920386, NULL, NULL, 'GPA2016NL004', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834248503298, NULL, NULL, 'GPA2016NL005', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '2020.01.29调入研发中心韦红光'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834252697601, NULL, NULL, 'GPA2016NL006', 'MiniRAE 3000 便携式VOC检测仪', 'PGM-7320', '美国华瑞', NULL, NULL, '2016-01-21', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-02-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海誉瑞仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834269474818, NULL, NULL, 'GPA2008G072', 'DC高精度传感器测试仪', 'GDC-003E', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834282057730, NULL, NULL, 'GPA2002H007', '高精度传感器测试仪', 'GDC-002D', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834294640642, NULL, NULL, 'GPA2006G031', 'DC高精度传感器测试仪', 'GDC-003E', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834307223553, NULL, NULL, 'GPA2004H012', '高精度传感器测试仪', 'GDC-003D', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834315612162, NULL, NULL, 'GPA2012B116', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834328195074, NULL, NULL, 'GPC2012B114', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834340777986, NULL, NULL, 'GPC2012B111', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834349166594, NULL, NULL, 'GPC2012B113', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834365943809, NULL, NULL, 'GPC2012B118', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834378526721, NULL, NULL, 'GPC2012B112', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834391109633, NULL, NULL, 'GPC2012C117', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834399498242, NULL, NULL, 'GPC2012B119', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834412081154, NULL, NULL, 'GPC2012C115', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834420469762, NULL, NULL, 'GPC2009G095', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834433052674, NULL, NULL, 'GPC2016NL002', '鼓风恒温干燥箱', 'DHG101AS-4', '上海创衡仪器有限公司', '1.8kw', NULL, '2016-01-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-03-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海创衡仪器有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834445635585, NULL, NULL, 'GPC2016NL004', '双液自动灌胶机', 'SEC-3030A', '苏州世椿自动化设备有限公司', NULL, NULL, '2015-12-25', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-03-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州世椿自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834454024193, NULL, NULL, 'GPG2016NL002', '环链手动葫芦', '3m*3m', '华工起重商贸', NULL, NULL, '2016-03-21', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-04-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '华工起重商贸', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834470801410, NULL, NULL, 'GPA2016NH001', '便携式非甲烷总烃检测仪', 'GT903-NMHC', '深圳市科尔诺电子科技有限公司', NULL, NULL, '2016-01-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市科尔诺电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834483384321, NULL, NULL, 'GOG2016NL008', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834495967234, NULL, NULL, 'GOG2016NL009', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834516938754, NULL, NULL, 'GOG2016NL010', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834525327362, NULL, NULL, 'GOG2016NL011', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834533715970, NULL, NULL, 'GOG2016NL007', '除湿机', 'DH890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2016-01-06', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皖宁精密科学仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834546298881, NULL, NULL, 'GPC2016NL005', '自动封口机', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2016-05-03', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '浙江鼎业机械设备有限公司(淘宝)', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834558881794, NULL, NULL, 'GPC2016NL006', '弹簧分离机', 'HS2306', '深圳市好助手机电设备有限公司', NULL, NULL, '2016-05-02', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市好助手机电设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834567270401, NULL, NULL, 'GPG2016NL003', '不锈钢水桶', '1.2m定制', '上海励鉴机械五金加工厂', NULL, NULL, '2016-05-11', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海励鉴机械五金加工厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834579853314, NULL, NULL, 'GPG2016NL004', '千分尺手动可调架滑台平台', 'LSP125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834592436225, NULL, NULL, 'GPG2016NL005', '千分尺手动可调架滑台平台', 'LSP125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834605019138, NULL, NULL, 'GPG2016NL006', '千分尺手动可调架滑台平台', 'LY125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834617602049, NULL, NULL, 'GOG2016NL013', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-05-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834630184961, NULL, NULL, 'GOG2016NL014', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-05-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834642767873, NULL, NULL, 'GPA2016NH002', 'PM10/PM2.5光散射激光可吸入粉尘连续测试仪', 'PC-3A', '青岛溯源环保设备有限公司', NULL, NULL, '2016-05-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '青岛溯源环保设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834651156482, NULL, NULL, 'GPC2016NL007', 'PCB收板机', 'YUD-90', '苏州镒瞬自动化设备有限公司', NULL, NULL, '2016-05-02', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州镒瞬自动化设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834663739394, NULL, NULL, 'GPG2016NL007', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834676322305, NULL, NULL, 'GPG2016NL008', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834684710913, NULL, NULL, 'GPG2016NL009', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834701488130, NULL, NULL, 'GPG2016NL010', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834714071041, NULL, NULL, 'GPG2016NL011', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834726653953, NULL, NULL, 'GPC2016NL008', '油盅移印机', 'TP-100E', '上海盈晖机械设备有限公司', NULL, NULL, '2016-05-23', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海盈晖机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834739236865, NULL, NULL, 'GPC2016NL009', '振动盘', 'DABTS300', '上海奇钢自动化设备有限公司', NULL, NULL, '2016-05-30', '4', '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海奇钢自动化设备有限公司', NULL, NULL, NULL, NULL, '2024.11.28研发闲置,已走调拨单,放在金工间闲置设备区域'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834756014082, NULL, NULL, 'GPC2016NL010', '航拍无人机', '大疆精灵3,4K航拍飞行器', '南京模幻天空航空科技有限公司', NULL, NULL, '2016-06-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-07-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '南京模幻天空航空科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834772791297, NULL, NULL, 'GPC2016NL011', '高速三维锡膏检查系统', 'InSPIre-510a', '厦门思泰克光电科技有限公司', NULL, NULL, '2016-07-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海晨善电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834781179906, NULL, NULL, 'GPC2016NL012', '自动线材对折贴标机', 'JB-6130', '东莞市锦标自动化设备有限公司', NULL, NULL, '2016-06-30', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市锦标自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834793762817, NULL, NULL, 'GPA2016NL007', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834810540034, NULL, NULL, 'GPA2016NL008', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '2021.01.29调入研发中心韦红光'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834827317249, NULL, NULL, 'GPA2016NL009', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834839900162, NULL, NULL, 'GPA2016NL010', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834852483074, NULL, NULL, 'GPA2016NL011', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834865065986, NULL, NULL, 'GPC2016NL014', '高精密点胶控制器(点胶机)', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2016-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834877648897, NULL, NULL, 'GPC2016NL013', '除湿机', 'DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2016-07-20', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皖宁精密科学仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834886037505, NULL, NULL, 'GPG2016NL012', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834902814721, NULL, NULL, 'GPG2016NL013', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834911203330, NULL, NULL, 'GPG2016NL014', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834923786241, NULL, NULL, 'GPC2016NL015', '接驳台', '600MM长度 带灯架', '昆山松航电子科技有限公司', NULL, NULL, '2016-07-25', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834936369154, NULL, NULL, 'GPA2016NL012', '端子拉力测试仪(仪表)', 'HF-500', '温州海宝仪器有限公司', NULL, NULL, '2016-08-17', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海双旭电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834948952066, NULL, NULL, 'GPG2016NL015', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834965729281, NULL, NULL, 'GPG2016NL016', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834982506497, NULL, NULL, 'GPG2016NL017', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834990895105, NULL, NULL, 'GPG2016NL018', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835007672322, NULL, NULL, 'GPA2016NL013', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835016060929, NULL, NULL, 'GPA2016NL014', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835037032450, NULL, NULL, 'GPA2016NL015', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835049615361, NULL, NULL, 'GPA2016NL016', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835062198274, NULL, NULL, 'GPA2016NL017', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835074781185, NULL, NULL, 'GPA2016NL018', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835087364098, NULL, NULL, 'GPA2016NH003', 'MiniRAE 3000 便携式VOC检测仪', 'PGM-7320', '美国华瑞', NULL, NULL, '2016-09-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海誉瑞仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835108335617, NULL, NULL, 'GPC2016NL016', '双线LED焊接机', 'DCH-400 LED', '台州浩然机械制造有限公司', NULL, NULL, '2016-08-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-11-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '台州浩然机械制造有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835120918529, NULL, NULL, 'GPC2016NL017', '超音波塑胶熔接机', 'ATGS-3510e 16款 網絡版', '东和超音波机械设备有限公司', '1.8kw', NULL, '2016-09-26', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2016-11-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山周市东和超音波机械设备经营部', '台', NULL, NULL, NULL, '工具,说明书,赠送模具3套,psf 2套,psk 1套,2023年9月14由上海公司转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835141890050, NULL, NULL, 'GPC2016NL018', '防潮柜', 'HSC435D', '上海和呈仪器制造有限公司', NULL, NULL, '2015-11-26', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海和呈仪器制造有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835154472962, NULL, NULL, 'GPC2016NL019', '防潮柜', 'HSC1436BD', '上海和呈仪器制造有限公司', NULL, NULL, '2015-09-06', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海和呈仪器制造有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835171250177, NULL, NULL, 'GPD2016NL001', '三层发料小推车', '三层钢制仓库车可拆装RCA-0317 700*480*900', '上海燮晨贸易有限公司', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海燮晨贸易有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835188027394, NULL, NULL, 'GPD2016NL002', '仓库平台登高梯', '可拆刹车1.8米', '真棒货架(淘宝)', NULL, NULL, '2016-11-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '真棒货架(淘宝)', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835204804610, NULL, NULL, 'GPD2016NL003', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835225776130, NULL, NULL, 'GPD2016NL004', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835246747650, NULL, NULL, 'GPD2016NL005', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835259330561, NULL, NULL, 'GPD2016NL006', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835276107778, NULL, NULL, 'GPD2016NL007', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835292884994, NULL, NULL, 'GPD2016NL008', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835305467906, NULL, NULL, 'GPD2016NL009', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835326439426, NULL, NULL, 'GPD2016NL010', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835339022337, NULL, NULL, 'GPD2016NL011', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835359993857, NULL, NULL, 'GPD2016NL012', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835380965377, NULL, NULL, 'GPD2016NL013', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835401936897, NULL, NULL, 'GPD2016NL014', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835418714113, NULL, NULL, 'GPD2016NL015', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835435491330, NULL, NULL, 'GPD2016NL016', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835448074241, NULL, NULL, 'GPD2016NL017', '升降台', '标准黑 宽680*深590mm', '乐歌人体工学科技股份有限公司', NULL, NULL, '2016-10-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乐歌人体工学科技股份有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835473240066, NULL, NULL, 'GPD2016NL018', '货梯', '可装卸1.5m高踏板梯', '上海成洁货架有限公司', NULL, NULL, '2016-12-08', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海成洁货架有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835490017281, NULL, NULL, 'GPC2016NH001', '烘箱', 'DHG-9248A', '上海精宏', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835506794498, NULL, NULL, 'GPC2016NH002', '离心机', 'HC-3515', '中科中佳', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835523571713, NULL, NULL, 'GPC2016NH003', '酸度计', 'PHS-3C', '上海雷磁', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835544543234, NULL, NULL, 'GPC2016NH004', '分析天平', 'FR4202CN', '奥豪斯', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835578097665, NULL, NULL, 'GPC2016NH005', '磁力搅拌器', 'H01-1D', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835594874881, NULL, NULL, 'GPC2016NH006', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835611652098, NULL, NULL, 'GPC2016NH007', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835628429313, NULL, NULL, 'GPC2016NH008', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835653595137, NULL, NULL, 'GPC2016NH009', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835670372354, NULL, NULL, 'GPC2012D122', '双工位成型机 (低压注塑机)', 'LPMS800M', '东莞市天赛塑胶机械有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市天赛塑胶机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835682955266, NULL, NULL, 'GPD2017NL001', '钢网架', '铝型材定制规格', '上海皇闽铝业', NULL, NULL, '2016-12-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皇闽铝业', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835695538178, NULL, NULL, 'GPD2017NL002', '钢网架', '铝型材定制规格', '上海皇闽铝业', NULL, NULL, '2016-12-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皇闽铝业', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835712315393, NULL, NULL, 'GPG2017NL001', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2017-01-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835724898305, NULL, NULL, 'GPG2017NL002', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2017-01-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835745869826, NULL, NULL, 'GPA2017NL001', '高速三维锡膏检查系统', 'InSPIre-510a', '厦门思泰克光电科技有限公司', NULL, NULL, '2016-12-07', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-02-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海晨善电子科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835758452737, NULL, NULL, 'GPC2017NL001', '烤胶固化炉', 'SAR-430MH', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2016-12-21', NULL, '试产组', NULL, NULL, NULL, NULL, NULL, NULL, '2017-02-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山众泰兴自动化设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835779424257, NULL, NULL, 'GPC2017NL003', 'G9 全自动视觉印刷机', 'G9', '东莞市凯格精密机械有限公司', NULL, NULL, '2016-12-22', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市凯格精密机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835792007170, NULL, NULL, 'GPC2017NL002', '自动盘料机', '621升级测漏点料机', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2017-03-06', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市嘉睿轩自动化设备有限公司', '台', NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835808784385, NULL, NULL, 'GPC2017NL004', '轨道(接驳台)', '120cm (含灯架)', '昆山松航电子科技有限公司', NULL, NULL, '2016-12-17', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835821367297, NULL, NULL, 'GPC2017NL005', '轨道(接驳台)', '60cm (含灯架)', '昆山松航电子科技有限公司', NULL, NULL, '2016-12-17', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835838144513, NULL, NULL, 'GPA2017NL002', '线缆长度测量仪', '英国BST英标BS33韩国优仪CLM33', '电线电缆长度测试线缆长度测量仪', NULL, NULL, '2017-03-02', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '珠海市凯美特电子有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835854921730, NULL, NULL, 'GPC2017NL006', '点胶机(500行程)', 'VS-500', '深圳市轴心自控技术有限公司', NULL, NULL, '2016-12-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835871698946, NULL, NULL, 'GPC2017NL007', '超音波塑胶熔接机', 'ATGL-2025e 16款网络型', '东和超音波机械设备有限公司', '2.5kw', NULL, '2017-02-23', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山周市東和超音波機械設備', '台', NULL, NULL, NULL, '工具箱,说明书,赠送模具4套pte两套,ptf两套,2023年9月14由上海公司转到安徽公司。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835884281858, NULL, NULL, 'GPG2017NL003', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835922030593, NULL, NULL, 'GPG2017NL004', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835934613505, NULL, NULL, 'GPG2017NL005', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835951390722, NULL, NULL, 'GPG2017NL006', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835968167938, NULL, NULL, 'GPG2017NL007', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835980750849, NULL, NULL, 'GPG2017NL008', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835993333761, NULL, NULL, 'GPG2017NL009', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836010110978, NULL, NULL, 'GPG2017NL010', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836026888194, NULL, NULL, 'GPG2017NL012', '研华工控机', 'IPC-610/701VG', '研华', NULL, NULL, '2017-02-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '千脉', '台', NULL, NULL, NULL, 'i3工控机,用于PSK远近光测试机'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836043665410, NULL, NULL, 'GPC2017NL008', 'HITACHI(日立)喷码机', 'PXR-D440W', 'HITACHI(日立)', NULL, NULL, '2017-04-11', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '辉泉机电设备(上海)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836060442626, NULL, NULL, 'GPC2017NH001', 'VOCS有机物在线检测系统', '非标定制品', '杭州泽天科技有限公司', NULL, NULL, '2017-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '杭州泽天科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836077219841, NULL, NULL, 'GPA2017NH001', '爱华噪音计', 'AWA5636-2', '苏州罗伯克测控技术有限公司', NULL, NULL, '2017-04-26', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-06-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州罗伯克测控技术有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836093997058, NULL, NULL, 'GPA2004H027', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2017.07.05找到,入账,生技二楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836110774274, NULL, NULL, 'GPA2017NL003', '示波器', 'DS4054(不带逻辑通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836123357186, NULL, NULL, 'GPA2017NL004', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836135940098, NULL, NULL, 'GPA2017NL005', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836148523010, NULL, NULL, 'GPA2017NL006', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836169494530, NULL, NULL, 'GPA2017NL007', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836182077442, NULL, NULL, 'GPA2017NL008', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836194660354, NULL, NULL, 'GPA2017NL009', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836211437569, NULL, NULL, 'GPA2017NL010', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836232409089, NULL, NULL, 'GPA2017NL011', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836244992001, NULL, NULL, 'GPA2017NL012', '示波器', 'DS4014 (大四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836257574913, NULL, NULL, 'GPA2017NL013', '示波器', 'DS4014 (大四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836270157826, NULL, NULL, 'GPC2017NL010', '超高压清洗水泵', '熊猫PM-611A', '上海大洋洲机械有限公司', NULL, NULL, '2017-07-03', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海大洋洲机械有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836282740738, NULL, NULL, 'GPA2017NH002', '爱华噪音计', 'AWA5636-2', '苏州罗伯克测控技术有限公司', NULL, NULL, '2016-06-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州罗伯克测控技术有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836303712258, NULL, NULL, 'GPA2017NL014', '示波器 (周立功)', 'ZD2024PLUS', '燊容电子科技(上海)有限公司', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836316295170, NULL, NULL, 'GPA2017NL015', '示波器 (周立功)', 'ZD2024PLUS', '燊容电子科技(上海)有限公司', NULL, NULL, '2017-03-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836328878081, NULL, NULL, 'GPC2017NL011', '气动剥线机', '3F型', '深圳市永鑫科自动化设备有限公司', NULL, NULL, '2017-07-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市永鑫科自动化设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836345655298, NULL, NULL, 'GPC2017NL012', '自动封口机', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2017-07-28', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '浙江鼎业机械设备有限公司(淘宝)', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836358238210, NULL, NULL, 'GPC2017NL013', '标签剥离机', 'BSC-B120', 'BSC (淘宝购买)', NULL, NULL, '2017-07-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, 'BSC (淘宝购买)', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836375015426, NULL, NULL, 'GPC2017NL014', 'PCB全自动收板机', 'x-550-l', '苏州鑫鼎创自动化科技有限公司', NULL, NULL, '2017-07-27', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州鑫鼎创自动化科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836395986945, NULL, NULL, 'GPC2017NL015', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2017-08-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海锐亿数码科技有限公司', '台', NULL, NULL, NULL, '有2017.08.22识别标记,未编号,'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836412764161, NULL, NULL, 'GPC2017NL016', '欧瑞康测试机台', '41-918 V4 + 41-989 V3', '苏州沃德科电子有限公司', NULL, NULL, '2017-05-22', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州沃德科电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836433735681, NULL, NULL, 'GPC2017NL017', '接驳台', '600MM 带灯架', '苏州锦月明电子有限公司', NULL, NULL, '2017-08-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州锦月明电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836454707201, NULL, NULL, 'GPG2017NL013', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836479873025, NULL, NULL, 'GPG2017NL014', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836500844546, NULL, NULL, 'GPG2017NL015', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836521816065, NULL, NULL, 'GPG2017NL016', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-09-06', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836542787585, NULL, NULL, 'GPA2017NL016', '光功率计', 'JC3110', '上海聚测信息科技有限公司', NULL, NULL, '2017-09-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海聚测信息科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836559564801, NULL, NULL, 'GPG2017NL017', '工控机', 'ipc-610/701vg/i3-2120/4g/1t/dvd/km 六串口', '上海圣界电子科技有限公司', NULL, NULL, '2017-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-10-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海圣界电子科技有限公司', '台', NULL, NULL, NULL, 'i3工控机,用于PSK距离标定测试机'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836580536321, NULL, NULL, 'GOA2017NL214', '工业用一体电脑', 'SS-150GY(规格:15寸 )', '广州索速电子科技有限公司', NULL, NULL, '2017-09-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-10-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836605702145, NULL, NULL, 'GPC2017NL018', 'PSK远光测试机', '远光测试机MARO-STF', '昆山沃椿电子科技有限公司', NULL, NULL, '2016-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836618285057, NULL, NULL, 'GPC2017NL019', 'PSK标定机设备', '标定机设备MARO-STD', '昆山沃椿电子科技有限公司', NULL, NULL, '2017-06-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836639256577, NULL, NULL, 'GPC2017NL020', 'PSK近光测试机', '近光测试机MARO-STP', '昆山沃椿电子科技有限公司', NULL, NULL, '2016-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836651839489, NULL, NULL, 'GPC2017NL021', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2017-11-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海锐亿数码科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836668616705, NULL, NULL, 'GPD2017NL003', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836685393921, NULL, NULL, 'GPD2017NL004', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836697976833, NULL, NULL, 'GPD2017NL005', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836714754050, NULL, NULL, 'GPD2017NL006', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836727336961, NULL, NULL, 'GPD2017NL007', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836744114178, NULL, NULL, 'GPD2017NL008', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836756697089, NULL, NULL, 'GPD2017NL009', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836773474306, NULL, NULL, 'GPD2017NL010', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836790251522, NULL, NULL, 'GPD2017NL011', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836807028738, NULL, NULL, 'GPD2017NL012', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836823805954, NULL, NULL, 'GPD2017NL013', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836840583169, NULL, NULL, 'GPD2017NL014', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836857360386, NULL, NULL, 'GPD2017NL015', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836874137602, NULL, NULL, 'GPD2017NL016', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836890914818, NULL, NULL, 'GPD2017NL017', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836903497730, NULL, NULL, 'GPD2017NL018', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836924469249, NULL, NULL, 'GPD2017NL019', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836937052161, NULL, NULL, 'GPD2017NL020', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836953829378, NULL, NULL, 'GPD2017NL021', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836970606593, NULL, NULL, 'GPD2017NL022', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836995772418, NULL, NULL, 'GPD2017NL023', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837012549634, NULL, NULL, 'GPD2017NL024', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837029326849, NULL, NULL, 'GPD2017NL025', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837046104065, NULL, NULL, 'GPD2017NL026', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837071269890, NULL, NULL, 'GPD2017NL027', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837088047106, NULL, NULL, 'GPD2017NL028', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837109018625, NULL, NULL, 'GPD2017NL029', '滚筒架', '2050*1250*1765', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837129990145, NULL, NULL, 'GPD2017NL030', '滚筒架', '2050*1250*1765', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837155155969, NULL, NULL, 'GPD2017NL031', '五层货架', '2m*1.8m*0.4m', '/', NULL, NULL, '2017-11-03', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '/', '台', NULL, NULL, NULL, '信息化3楼小车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837176127490, NULL, NULL, 'GPD2017NL032', '五层货架', '2m*1.8m*0.4m', '/', NULL, NULL, '2017-11-03', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '/', '台', NULL, NULL, NULL, '信息化3楼小车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837197099009, NULL, NULL, 'GOA2017NL222', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837222264834, NULL, NULL, 'GOA2017NL223', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837247430657, NULL, NULL, 'GOA2017NL224', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837264207874, NULL, NULL, 'GOA2017NL225', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837285179393, NULL, NULL, 'GOA2017NL226', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837301956609, NULL, NULL, 'GOA2017NL227', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837327122434, NULL, NULL, 'GOA2017NL228', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837348093953, NULL, NULL, 'GOA2017NL229', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837369065473, NULL, NULL, 'GOA2017NL230', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837394231297, NULL, NULL, 'GOA2017NL231', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837419397122, NULL, NULL, 'GOA2017NL232', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837436174337, NULL, NULL, 'GOA2017NL233', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837465534466, NULL, NULL, 'GOA2017NL234', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837494894594, NULL, NULL, 'GOA2017NL235', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837515866113, NULL, NULL, 'GOA2017NL236', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837532643329, NULL, NULL, 'GOA2017NL237', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837549420546, NULL, NULL, 'GOA2017NL238', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, '故障换机过程中丢失1台'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837574586370, NULL, NULL, 'GPC2017NL022', '在线气相色谱仪', 'N200', '和析仪器你(上海)有限公司', NULL, NULL, '2017-09-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '和析仪器你(上海)有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837595557890, NULL, NULL, 'GPC2017NL023', '在线高速点胶机', 'AU77D', '深圳市轴心自控技术有限公司', NULL, NULL, '2017-08-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, '2024.09.24转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837620723713, NULL, NULL, 'GPC2017NL024', '冷却系统', '泉友 QYL-D30AF', '上海泉贤实业有限公司', NULL, NULL, '2017-08-07', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海泉贤实业有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837645889537, NULL, NULL, 'GPC2017NL025', '空气压缩机', 'YB-WWJ200', '上海勇霸机电技术有限公司', NULL, NULL, '2017-11-11', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海勇霸机电技术有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837671055362, NULL, NULL, 'GPC2017NL026', '机械手臂', 'MOTOMAN-GP8', '安川电机(中国)有限公司', NULL, NULL, '2017-10-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '安川电机(中国)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837692026882, NULL, NULL, 'GOB2017NL018', '二维码打印机', '佳博 300密度点高清打印', '上海锐印电子设备有限公司', NULL, NULL, '2017-11-14', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海锐印电子设备有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837708804098, NULL, NULL, 'GPC2017NL027', 'i-Stock II Plus 双深智能仓储', 'i-Stock II Plus 双深智能仓储(i-Stock ⅡPlus) 系统(含贴标机+AGV)', '苏州艾斯达克智能科技有限公司', NULL, NULL, '2017-05-24', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州艾斯达克智能科技有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837725581314, NULL, NULL, 'GPC2018NL001', '气相色谱仪', 'GC9310', '上海色谱仪器有限公司', NULL, NULL, '2017-12-12', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海色谱仪器有限公司', '台', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837742358530, NULL, NULL, 'GPG2018NL001', '传感器老化仪柜子', '定制款5层', '上海佳迎机电成套设备有限公司', NULL, NULL, '2017-08-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-02-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海佳迎机电成套设备有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837767524354, NULL, NULL, 'GPC2018NH001', 'VOCS在线监测系统', '挥发性有机物分析系统', '杭州泽天科技有限公司', NULL, NULL, '2017-06-22', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '杭州泽天科技有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837788495873, NULL, NULL, 'GPC2018NL002', '步入式高低温试验箱', 'CVT 8/40-90', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2017-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '伟思富奇环境试验仪器(太仓)有限公司', '台', NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837805273090, NULL, NULL, 'GPA2018NL001', 'PSK自动化生产线', '定制规格', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2017-07-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837826244610, NULL, NULL, 'GPB2018NL001', '气动压线钳', '欧式管形端子压线钳0.25-2.5平方(台式)', '乐清市盐盆阿海五金商行', NULL, NULL, '2018-03-26', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '乐清市盐盆阿海五金商行', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837843021826, NULL, NULL, 'GOB2018NL003', '号码管打印机', '佳能C-210E', '上海锐亿数码科技有限公司', NULL, NULL, '2018-03-09', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海锐亿数码科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837859799041, NULL, NULL, 'GPC2018NL003', '激光切割机', 'C60-6040 激光切割机(含升降台)', '苏州镭扬激光科技有限公司', NULL, NULL, '2018-01-25', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州镭扬激光科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837914324994, NULL, NULL, 'GPC2018NL004', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2018-03-08', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837935296513, NULL, NULL, 'GPC2018NL041', '连续式剥皮打端机', 'JHN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2018-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '送刀片3副,模拟产品专用机'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837956268033, NULL, NULL, 'GPC2018NL042', '连续式剥皮打端机', 'JHN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2018-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '送刀片3副,9700产品专用机'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837981433857, NULL, NULL, 'GPB2018NL002', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838002405377, NULL, NULL, 'GPB2018NL003', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838019182594, NULL, NULL, 'GPB2018NL004', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838031765505, NULL, NULL, 'GPB2018NL005', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838056931330, NULL, NULL, 'GPB2018NL006', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838073708546, NULL, NULL, 'GPB2018NL007', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838090485761, NULL, NULL, 'GPB2018NL008', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838115651585, NULL, NULL, 'GPB2018NL009', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838136623106, NULL, NULL, 'GPB2018NL010', '智能无铅焊台', 'QUICK 203H', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838161788930, NULL, NULL, 'GPB2018NL011', '智能无铅焊台', 'QUICK 203H', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838182760450, NULL, NULL, 'GPG2018NL002', '奥津手动叉车', '2.5吨 规格:标准款520*1150', '上海长锦机电设备有限公司', NULL, NULL, '2018-06-01', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838207926273, NULL, NULL, 'GPC2018NL005', '全自动电脑切管机', 'MTF-200ST', '深圳市迈腾飞科技有限公司', NULL, NULL, '2018-01-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市迈腾飞科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838224703489, NULL, NULL, 'GPG2018NL003', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838241480706, NULL, NULL, 'GPG2018NL004', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838262452226, NULL, NULL, 'GPG2018NL006', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838279229442, NULL, NULL, 'GPG2018NL005', '自动测试台机柜', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-03-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838300200961, NULL, NULL, 'GPG2018NL007', '丝杆', '丝杆一批', '上海联巨机电有限公司', NULL, NULL, '2018-05-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海联巨机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838325366785, NULL, NULL, 'GPG2018NL010', '研华工控机', 'ARK-1550-S9A1E', '深圳研华', NULL, NULL, '2017-09-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海拓峰自动化系统有限公司', NULL, NULL, NULL, NULL, '数字车间,PSK设备设备使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838350532609, NULL, NULL, 'GPG2018NL011', '高频切换开关', '高频切换开关', '北京信测科技有限公司', NULL, NULL, '2017-07-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京信测科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838367309826, NULL, NULL, 'GPG2018NL013', '系统硬盘', '系统硬盘', '深圳市富港迪科技有限公司', NULL, NULL, '2018-04-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市富港迪科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838388281345, NULL, NULL, 'GPG2018NL008', '电话模拟分机设备', 'AVAYA电话模拟分机设备', '北京红帆联合网络通信科技有限公司', NULL, NULL, '2018-05-28', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京红帆联合网络通信科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838405058562, NULL, NULL, 'GPG2018NL012', '功率放大器', '功率放大器', '北京信测科技有限公司', NULL, NULL, '2017-08-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京信测科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838421835778, NULL, NULL, 'GOG2018NL001', '投影幕', '定制规格,遥控黑白面', '红叶影视器材股份有限公司', NULL, NULL, '2017-08-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州迪曼智能影音系统工程有限公司', '面', NULL, NULL, NULL, '数字车间,PSK设备设备使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838442807297, NULL, NULL, 'GPC2018NL006', '进口高低温试验箱', 'VCL7006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838467973122, NULL, NULL, 'GPC2018NL007', '进口高低温试验箱', 'VTL4006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, NULL, '数字车间使用,2023.12.21转研发'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838501527554, NULL, NULL, 'GPC2018NL008', '进口高低温试验箱', 'VTL4006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838518304770, NULL, NULL, 'GOA2018NL074', '电脑', '电脑', '深圳市赛鑫科科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛鑫科科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838535081986, NULL, NULL, 'GPG2018NL014', '超级恒温水浴锅', '超级恒温水浴锅', '常州市万合仪器制作有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州市万合仪器制作有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838564442113, NULL, NULL, 'GPG2018NL015', '恒温水浴槽', '恒温水浴槽', '常州金坛中旺仪器制造有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州金坛中旺仪器制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838585413634, NULL, NULL, 'GPC2018NL009', '真空浸漆设备', '真空浸漆设备', '张家港市佳龙真空浸漆设备制造厂', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '张家港市佳龙真空浸漆设备制造厂', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838606385154, NULL, NULL, 'GPG2018NL016', '无齿带锯', 'MJ104', '江苏腾飞数控机械有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '江苏腾飞数控机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838627356674, NULL, NULL, 'GPC2018NL010', '双级纯水设备', 'HY-DRO 300', '上海惠源水处理设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海惠源水处理设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838644133889, NULL, NULL, 'GPG2018NL017', '台车炉', 'SXL-900T/120', '上海钜晶精密仪器制造有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海钜晶精密仪器制造有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838656716801, NULL, NULL, 'GPC2018NL011', '微波转盘式干燥箱', '30kw', '上海斡龙微波科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海斡龙微波科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838677688322, NULL, NULL, 'GPC2018NL012', '混胶系统', '分散机等7种配件', '上海法孚莱机电科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海法孚莱机电科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838694465538, NULL, NULL, 'GPC2018NL013', '6M柔性自动组装线', 'SSM-6M/智能兼容性,非标定制', '上海统然自动化科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838715437058, NULL, NULL, 'GPA2018NL002', '智能生产线', '9700自动组装线生产线', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838736408578, NULL, NULL, 'GPA2018NL003', '瓦楞纸生产线', '瓦楞纸生产线', '江阴市通惠机械有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '江阴市通惠机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838753185794, NULL, NULL, 'GOA2018NL073', '电脑', '电脑', '深圳市赛鑫科科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛鑫科科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838769963009, NULL, NULL, 'GOA2018NL075', '交换机', '交换机', '上海旺乾电子科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海旺乾电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838782545921, NULL, NULL, 'GPA2018NL004', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838803517442, NULL, NULL, 'GPA2018NL005', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838816100353, NULL, NULL, 'GPA2018NL006', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838828683266, NULL, NULL, 'GPA2018NL007', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838841266178, NULL, NULL, 'GPA2018NL008', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838853849089, NULL, NULL, 'GPA2018NL009', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838870626306, NULL, NULL, 'GPA2018NL010', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838883209217, NULL, NULL, 'GPA2018NL011', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838916763650, NULL, NULL, 'GPA2018NL012', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838946123778, NULL, NULL, 'GPA2018NL013', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838962900993, NULL, NULL, 'GPA2018NL014', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.05.20转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838975483905, NULL, NULL, 'GPA2018NL015', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838988066817, NULL, NULL, 'GPA2018NL016', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839000649730, NULL, NULL, 'GPA2018NL017', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839013232641, NULL, NULL, 'GPA2018NL018', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839030009858, NULL, NULL, 'GPG2018NL018', '程控固化室', '程控固化室', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839042592769, NULL, NULL, 'GPC2018NL014', '油水分离器', 'SHY-I-A (L2000*W850*H1200mm)', '上海汇元环保设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海汇元环保设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839055175682, NULL, NULL, 'GPG2018NL019', '管式电炉', '管式电炉', '上海华宴电炉厂', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海华宴电炉厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839071952897, NULL, NULL, 'GPA2018NL019', '智能振动冲击仪', 'HT-150A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839088730114, NULL, NULL, 'GPA2018NL020', '全自动传感器测试仪', 'HT-100A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839105507330, NULL, NULL, 'GPA2018NL021', '全自动传感器测试仪', 'HT-100A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839118090242, NULL, NULL, 'GPC2018NL015', '气体质量控制器', 'CX-GMFM-XD300M/XD300C', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839130673154, NULL, NULL, 'GPC2018NL016', '离线式AOI', '离线式AOI VCTA-Z5X', '深圳市振华兴科技有限公司', NULL, NULL, '2018-06-21', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市振华兴科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839143256065, NULL, NULL, 'GPC2018NL017', '吸附试验台', '1500*850*1700', '上海索林流体技术有限公司', NULL, NULL, '2017-12-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海索林流体技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839164227586, NULL, NULL, 'GOA2018NL076', '研华工控机', 'UNO-2272G', '上海圣界电子科技有限公司', NULL, NULL, '2018-04-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839181004801, NULL, NULL, 'GPA2018NL022', '水分测试仪', 'DHS-10A', '浙江力辰仪器科技有限公司', NULL, NULL, '2018-06-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '浙江力辰仪器科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839193587714, NULL, NULL, 'GPG2018NL026', '数字化车间软件系统', '数字化车间,多项软件合计', '海宝软件', NULL, NULL, '2018-06-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '海宝软件', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839210364930, NULL, NULL, 'GPG2018NL020', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839222947841, NULL, NULL, 'GPG2018NL021', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839239725057, NULL, NULL, 'GPG2018NL022', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839260696578, NULL, NULL, 'GPG2018NL023', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839277473794, NULL, NULL, 'GPG2018NL024', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839290056705, NULL, NULL, 'GPG2018NL025', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839306833921, NULL, NULL, 'GPC2018NL018', '3轴焊接机器人', 'QUICK 9220A', '快克智能装备股份有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839327805441, NULL, NULL, 'GPD2018NL002', '货架', 'L6500(外)*W600*H2300', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839344582658, NULL, NULL, 'GPD2018NL003', '货架', 'L1400(外)*W400*H1850', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839357165569, NULL, NULL, 'GPD2018NL004', '货架', 'L1400(外)*W400*H1850', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839369748481, NULL, NULL, 'GPD2018NL005', '货架', 'L2900(外)*W600*H2300', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839386525698, NULL, NULL, 'GPB2018NL012', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839403302913, NULL, NULL, 'GPB2018NL013', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839420080129, NULL, NULL, 'GPB2018NL014', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839436857345, NULL, NULL, 'GPB2018NL015', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839453634562, NULL, NULL, 'GPB2018NL016', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839466217474, NULL, NULL, 'GPB2018NL017', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839487188994, NULL, NULL, 'GPB2018NL018', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839503966209, NULL, NULL, 'GPB2018NL019', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839520743426, NULL, NULL, 'GPB2018NL020', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839529132034, NULL, NULL, 'GPB2018NL021', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839550103554, NULL, NULL, 'GPC2018NL019', '高精密点胶机', '微型桌面机器人', '深圳市轴心自控技术有限公司', NULL, NULL, '2018-06-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839571075074, NULL, NULL, 'GPG2018NL027', '中文拣货电子标签管理系统', '定制电子标签系统', '上海芯特数字技术有限公司', NULL, NULL, '2017-04-03', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海芯特数字技术有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839592046594, NULL, NULL, 'GOA2018NL095', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839608823810, NULL, NULL, 'GOA2018NL096', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839629795330, NULL, NULL, 'GOA2018NL097', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839642378241, NULL, NULL, 'GPG2018NL031', '工控机', '研凌208无风扇工控机J1900', '深圳市赛畅科技有限公司', NULL, NULL, '2018-07-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛畅科技有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839663349761, NULL, NULL, 'GOA2018NH009', 'MOXA交换机', 'EDS-205A', '上海优特新实业有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海优特新实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839680126978, NULL, NULL, 'GPG2018NH001', '粘度计', 'NDJ-9S', '上海平轩科学仪器有限公司', NULL, NULL, '2018-07-19', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海平轩科学仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839705292802, NULL, NULL, 'GPG2018NH002', '定量取样器', 'YT-DL100', '杭州研特科技有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '杭州研特科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839734652929, NULL, NULL, 'GPA2018NH001', '测试仪 (风速仪)', '6036P', '广州君达仪器仪表有限公司', NULL, NULL, '2018-05-25', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州君达仪器仪表有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839759818753, NULL, NULL, 'GOA2018NH010', '一体工作站', 'IPPC-6192A', '北京东森兰泰科技有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京东森兰泰科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839793373186, NULL, NULL, 'GPC2018NL040', '手推走刀式分板机', 'NS-785 L450*W330*H350(mm)', '深圳市新光扬电子设备有限公司', NULL, NULL, '2018-08-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市新光扬电子设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839810150402, NULL, NULL, 'GPG2018NL032', '液压车(奥津)', 'NP510', '上海长锦机电设备有限公司', NULL, NULL, '2018-08-22', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839831121921, NULL, NULL, 'GPG2018NL033', '半电动堆高车', 'BT05309F', '上海罗倍拓工业设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海罗倍拓工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839847899137, NULL, NULL, 'GPG2018NL034', '陶瓷纤维马弗炉', 'SXL-1200C', '上海钜晶精密仪器制造有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海钜晶精密仪器制造有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839868870657, NULL, NULL, 'GPG2018NL035', '塑料桶', '1000L', '上海尊霖塑料制品有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海尊霖塑料制品有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839894036481, NULL, NULL, 'GPG2018NL036', '塑料桶', '1000L', '上海尊霖塑料制品有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海尊霖塑料制品有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839915008001, NULL, NULL, 'GPG2018NL037', '马弗炉托盘', '1100*700', '常州维克低温设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839935979521, NULL, NULL, 'GPG2018NL038', '吊篮底座', 'φ1100', '常州维克低温设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839956951042, NULL, NULL, 'GPG2018NL045', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839986311169, NULL, NULL, 'GPG2018NL046', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840011476993, NULL, NULL, 'GPG2018NL047', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840040837122, NULL, NULL, 'GPG2018NL048', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840061808642, NULL, NULL, 'GPG2018NL049', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840082780161, NULL, NULL, 'GPG2018NL050', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840103751682, NULL, NULL, 'GPG2018NL039', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840120528898, NULL, NULL, 'GPG2018NL040', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840141500417, NULL, NULL, 'GPG2018NL041', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840166666242, NULL, NULL, 'GPG2018NL042', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840187637762, NULL, NULL, 'GPG2018NL043', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840204414978, NULL, NULL, 'GPG2018NL044', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840225386497, NULL, NULL, 'GPG2018NL051', '高精度三爪内径千分尺', '日本三丰 型号HT-10R', '东莞市锯工五金贸易有限公司', NULL, NULL, '2018-09-13', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '东莞市锯工五金贸易有限公司', NULL, NULL, NULL, NULL, 'IQC来料检验使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840246358018, NULL, NULL, 'GPG2018NL052', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840275718146, NULL, NULL, 'GPG2018NL053', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840292495362, NULL, NULL, 'GPG2018NL054', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840313466881, NULL, NULL, 'GPG2018NL055', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840330244097, NULL, NULL, 'GPG2018NL056', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840363798529, NULL, NULL, 'GPG2018NL057', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840393158657, NULL, NULL, 'GPG2018NL058', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840409935873, NULL, NULL, 'GPG2018NL059', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840430907393, NULL, NULL, 'GPG2018NL060', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840451878914, NULL, NULL, 'GPG2018NL061', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840468656130, NULL, NULL, 'GOA2018NL134', '无风扇工控机', '迷你低功耗', '深圳市控汇智能股份有限公司', NULL, NULL, '2018-09-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市控汇智能股份有限公司', NULL, NULL, NULL, NULL, '9700自动化线用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840485433345, NULL, NULL, 'GPG2018NL062', '超音波模具', 'PSF盖板 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2018-09-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, 'PSF盖板模具一套 20Khz'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840502210561, NULL, NULL, 'GPG2018NL063', '老化仪机柜', '传感器老化仪机柜(定制款)', '上海佳迎机电成套设备有限公司', NULL, NULL, '2018-10-11', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海佳迎机电成套设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840523182081, NULL, NULL, 'GPD2018NL006', '货架', '货架1280*600*2200', '上海皓臻工业设备有限公司', NULL, NULL, '2018-10-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840539959298, NULL, NULL, 'GPD2018NL007', '货架', '货架1280*600*2200', '上海皓臻工业设备有限公司', NULL, NULL, '2018-10-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840560930818, NULL, NULL, 'GPG2018NL064', '主板与镜架(烫压治具)', 'pse柔性线使用治具 1804项目', '苏州沃德科电子有限公司', NULL, NULL, '2018-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州沃德科电子有限公司', NULL, NULL, NULL, NULL, '1804项目 pse柔性线使用治具'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840581902337, NULL, NULL, 'GPG2018NL065', '壳体与主板镜架(烫压治具)', 'pse柔性线使用治具 1804项目', '苏州沃德科电子有限公司', NULL, NULL, '2018-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州沃德科电子有限公司', NULL, NULL, NULL, NULL, '1804项目 pse柔性线使用治具'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840602873858, NULL, NULL, 'GPC2018NL043', '自动焊接机器人', 'QUICK9220A', '快克智能装备股份有限公司', NULL, NULL, '2018-10-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840619651073, NULL, NULL, 'GPC2018NL044', '超音波熔接模具', 'PSE 按键(35KHZ)', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '2024.04.25转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840644816898, NULL, NULL, 'GPC2018NL045', '超音波熔接模具', 'PSE 滤光片 20KHZ', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840661594113, NULL, NULL, 'GPC2018NL046', '超音波熔接模具', 'PSE 后盖板 20KHZ', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840678371329, NULL, NULL, 'GPA2018NH007', '便携式VOC检测', '型号:ppbRAE3000', '美国华瑞', NULL, NULL, '2018-11-16', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海誉瑞仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840695148545, NULL, NULL, 'GOG2018NH005', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840720314369, NULL, NULL, 'GOG2018NH006', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840741285889, NULL, NULL, 'GOG2018NH007', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840758063105, NULL, NULL, 'GPC2018NL047', '红外温度传感器', 'RAYCMLTV3M(-20~500度,0-5V电压输出,3米)', '深圳维多利斯科技有限公司', NULL, NULL, '2018-11-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳维多利斯科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840783228930, NULL, NULL, 'GOB2018NL008', '号码管打印机', '佳能C-210E', '上海岑溪实业有限公司', NULL, NULL, '2018-12-04', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840804200449, NULL, NULL, 'GOB2018NL009', '号码管打印机', '佳能C-210E', '上海岑溪实业有限公司', NULL, NULL, '2018-12-04', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840825171970, NULL, NULL, 'GOB2018NL010', '型标签打印机', '兄弟牌PT-18Rz', '上海岑溪实业有限公司', NULL, NULL, '2018-12-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840883892226, NULL, NULL, 'GPA2019NL001', '反射率测定仪', 'C84-Ⅲ型', '上海专色贸易有限公司', NULL, NULL, '2018-12-29', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海专色贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840909058050, NULL, NULL, 'GPB2019NL001', '铝型材推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840930029569, NULL, NULL, 'GPB2019NL002', '铝型材推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840955195393, NULL, NULL, 'GPB2019NL003', '铝型材小推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840984555522, NULL, NULL, 'GPG2019NL001', '日本三丰数显游标卡尺', '200mm/500-197/公英', '东莞市锯工五金贸易有限公司', NULL, NULL, '2018-12-29', NULL, '技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '东莞市锯工五金贸易有限公司', NULL, NULL, NULL, NULL, '内部编号:NPA2018H009'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841001332737, NULL, NULL, 'GPC2019NL001', '10.4寸电容一体机', '10.4寸电容触摸', '上海森克电子科技有限公司', NULL, NULL, '2018-12-29', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海森克电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841026498561, NULL, NULL, 'GPC2019NL002', '10.4寸电容一体机', '10.4寸电容触摸', '上海森克电子科技有限公司', NULL, NULL, '2018-12-29', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海森克电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841047470081, NULL, NULL, 'GPC2019NL003', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841064247297, NULL, NULL, 'GPC2019NL004', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841081024514, NULL, NULL, 'GPC2019NL005', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841106190337, NULL, NULL, 'GPC2019NL006', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841127161858, NULL, NULL, 'GPC2019NL007', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841152327682, NULL, NULL, 'GPC2019NL008', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841169104897, NULL, NULL, 'GPC2019NL009', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841190076417, NULL, NULL, 'GPC2019NL010', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841215242242, NULL, NULL, 'GPC2019NL011', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841232019457, NULL, NULL, 'GPC2019NL012', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841252990978, NULL, NULL, 'GPC2019NL013', '触摸屏', 'HMI MT8103IE 10寸 威纶通', '苏州辉励电气科技有限公司', NULL, NULL, '2018-12-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州辉励电气科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841278156802, NULL, NULL, 'GPG2019NL011', '电子秤', 'JS-30D 称重重量:30KG', '上海信衡电子有限公司', NULL, NULL, '2018-08-29', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海信衡电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841299128321, NULL, NULL, 'GPC2019NL014', '缓冲气泡充气机', 'wiair-1000', '宁波广博文具实业有限公司', NULL, NULL, '2018-08-29', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波广博文具实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841311711234, NULL, NULL, 'GPC2019NL015', 'Winson手持扫码枪', 'WNL-6023B/V-RS232', '广州市韦尔讯信息科技有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州市韦尔讯信息科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841332682754, NULL, NULL, 'GPC2019NL016', 'Winson手持扫码枪', 'WNL-6023B/V-RS232', '广州市韦尔讯信息科技有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州市韦尔讯信息科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841341071362, NULL, NULL, 'GPD2019NL010', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841362042881, NULL, NULL, 'GPD2019NL011', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841378820098, NULL, NULL, 'GPD2019NL012', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841399791618, NULL, NULL, 'GPD2019NL013', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841412374530, NULL, NULL, 'GPD2019NL014', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841424957441, NULL, NULL, 'GPD2019NL015', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841437540354, NULL, NULL, 'GPD2019NL016', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841450123266, NULL, NULL, 'GPD2019NL017', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841466900481, NULL, NULL, 'GPD2019NL018', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841479483394, NULL, NULL, 'GPD2019NL019', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841492066306, NULL, NULL, 'GPD2019NL020', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841508843522, NULL, NULL, 'GPD2019NL021', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841521426433, NULL, NULL, 'GPD2019NL022', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841538203649, NULL, NULL, 'GPD2019NL023', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841550786561, NULL, NULL, 'GPD2019NL024', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841571758081, NULL, NULL, 'GPD2019NL025', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841588535297, NULL, NULL, 'GPD2019NL026', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841605312513, NULL, NULL, 'GPD2019NL027', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841622089729, NULL, NULL, 'GPD2019NL028', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841638866946, NULL, NULL, 'GPD2019NL029', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841655644162, NULL, NULL, 'GPD2019NL030', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841668227073, NULL, NULL, 'GPD2019NL031', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841685004289, NULL, NULL, 'GPD2019NL032', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841705975809, NULL, NULL, 'GPD2019NL033', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841722753025, NULL, NULL, 'GPD2019NL034', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841735335937, NULL, NULL, 'GPD2019NL035', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841747918850, NULL, NULL, 'GPD2019NL036', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841764696066, NULL, NULL, 'GPD2019NL037', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841781473282, NULL, NULL, 'GPD2019NL038', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841798250498, NULL, NULL, 'GPD2019NL039', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841810833409, NULL, NULL, 'GPB2018NL022', '超音波模具', 'PSR圆加方滤光片(上下模)', '昆山新东和超音波设备有限公司', NULL, NULL, '2018-03-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山新东和超音波设备有限公司', '套', NULL, NULL, NULL, '20K智能超声波用治具'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841831804930, NULL, NULL, 'GPB2018NL023', '超音波模具', 'PSR圆加方后盖(上下模)', '昆山新东和超音波设备有限公司', NULL, NULL, '2018-03-11', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山新东和超音波设备有限公司', '套', NULL, NULL, NULL, '20K智能超声波用治具'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841844387842, NULL, NULL, 'GPD2018NL038', '高精度电动位移滑台', 'GKA60110-1280-12P-P20-C', '东莞鼎企智能自动化科技有限公司', NULL, NULL, '2018-12-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841852776449, NULL, NULL, 'GPD2018NL039', '高精度电动位移滑台', '滑台 (包含MC600控制箱)', '北京卓立汉光仪器有限公司', NULL, NULL, '2018-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '北京卓立汉光仪器有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841873747970, NULL, NULL, 'GPD2019NH001', '手动液压车', '型号:FN4230-W1', '上海长锦机电设备有限公司', NULL, NULL, '2019-01-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841894719490, NULL, NULL, 'GPD2019NH002', '手动液压车', '型号:FN4230-W1', '上海长锦机电设备有限公司', NULL, NULL, '2019-01-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841911496705, NULL, NULL, 'GPA2018NL023', '可调激光器', '波长:86-850', 'COHERENT', NULL, NULL, '2018-10-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '爱特蒙特', NULL, NULL, NULL, NULL, '加密狗、电源(#86-878)、固定底座(索雷博KM100V)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841928273922, NULL, NULL, 'GPC2019NH001', '电动铭牌刻字机', '规格选:185mm×115mm;新款电动式(不带电脑', '武汉金雕激光有限公司', NULL, NULL, '2019-01-06', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '武汉金雕激光有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841966022658, NULL, NULL, 'GPA2019NL002', '振动测试仪', 'UT312 分体式', '天津艾锐达仪器仪表贸易有限公司', NULL, NULL, '2019-01-22', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '天津艾锐达仪器仪表贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842007965697, NULL, NULL, 'GPA2019NH001', '接地电阻测量仪表', 'FT3151;测量范围:0~1150Ω(MΩ', '上海君达仪器仪表有限公司', NULL, NULL, '2019-03-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海君达仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842024742914, NULL, NULL, 'GPA2019NH002', '泄漏耐压测试仪', '0.1-5)KV;泄漏电流:(0.1-20)mA;5级', '上海本杉仪器设备有限公司', NULL, NULL, '2019-03-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海本杉仪器设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842041520130, NULL, NULL, 'GPG2019NH001', '红外传感器', 'LC-S20', '中山市莱科自动化设备有限公司', NULL, NULL, '2019-03-07', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842066685953, NULL, NULL, 'GPC2019NH002', '纠偏控制器主机', 'LC-C10触屏分体式', '中山市莱科自动化设备有限公司', NULL, NULL, '2019-03-07', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842087657473, NULL, NULL, 'GOB2019NL001', 'brother 标签打印机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2019-03-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '电源,可充电电池充电底座,USB数据线,手提箱,光盘'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842108628994, NULL, NULL, 'GOB2019NL002', 'brother 标签打印机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2019-03-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '电源,可充电电池充电底座,USB数据线,手提箱,光盘'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842150572033, NULL, NULL, 'GPC2018NH002', 'CK 离心脱水机', 'LYP-2060', '泰州市燎原机械制造有限公司', NULL, NULL, '2018-11-16', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '泰州市燎原机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842171543554, NULL, NULL, 'GPC2019NH004', '空气压缩机', '11kw,排气量1.1m³/min 1.6Mpa压力 (16kg/cm²)', '衢州开瑞机械设备有限公司', NULL, NULL, '2019-03-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '衢州开瑞机械设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842184126465, NULL, NULL, 'GPC2019NH005', '圆钢套丝机', '电动式,M12-M6螺纹', '杭州宁达套丝机厂', NULL, NULL, '2019-03-27', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '杭州宁达套丝机厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842200903681, NULL, NULL, 'GPD2019NL003', '货架', '货架 200*180 4层 每层限重200kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842217680897, NULL, NULL, 'GPD2019NL004', '货架', '货架 200*180 4层 每层限重200kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842230263810, NULL, NULL, 'GPD2019NL005', '货架', '货架 200*180 5层 每层限重150kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842251235329, NULL, NULL, 'GPD2019NL006', '货架', '货架 200*180 5层 每层限重150kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842272206850, NULL, NULL, 'GPC2019NH006', '5T单梁行车起重机', '2根梁', '河南中州智能设备集团有限公司', NULL, NULL, '2019-03-28', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海力豪起重设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842326732802, NULL, NULL, 'GPD2019NL007', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842347704322, NULL, NULL, 'GPD2019NL008', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842364481538, NULL, NULL, 'GPD2019NL009', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842398035970, NULL, NULL, 'GPC2018NL60', '逻辑分析设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842414813185, NULL, NULL, 'GPA2018NL025', '光电距离测试台', '/', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842431590401, NULL, NULL, 'GPC2018NL061', 'PCB清洗机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842456756226, NULL, NULL, 'GPA2018NL026', '震动测试系统', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842469339138, NULL, NULL, 'GPA2018NL027', '加速度冲击测试系统', '/', '上海统然自动化科技有限公司', NULL, NULL, '2019-04-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842490310658, NULL, NULL, 'GPB2017NL002', 'PSK超音波模具(上模)', '35k', '昆山周市东和超音波机械', NULL, NULL, '2017-10-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山周市东和超音波机械', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842502893569, NULL, NULL, 'GPB2017NL003', 'PSK-2超音波模具35K', '35k', '昆山周市东和超音波机械', NULL, NULL, '2017-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山周市东和超音波机械', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842528059393, NULL, NULL, 'GPC2018NL070', '激光打标机', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842544836610, NULL, NULL, 'GPC2018NL071', '雷击浪涌发生设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-10-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842561613825, NULL, NULL, 'GPC2018NL072', '光学实验平台', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842578391042, NULL, NULL, 'GPA2018NL030', '智能传感器频率测试仪', '定制型号', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '电感传感器线性测试用,DQM'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842599362561, NULL, NULL, 'GPC2018NL076', '定向耦合设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842620334081, NULL, NULL, 'GPC2018NL077', '信号发生设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842637111297, NULL, NULL, 'GPA2018NL034', 'EMC 辐射强度检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842658082817, NULL, NULL, 'GPA2018NL035', '智能老化测试设备', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842674860033, NULL, NULL, 'GPA2018NL041', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842695831554, NULL, NULL, 'GPA2018NL042', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842708414465, NULL, NULL, 'GPA2018NL043', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842725191681, NULL, NULL, 'GPC2018NL035', '传感器在线激光修调系统', '125*95*180', '/', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '/', NULL, NULL, NULL, NULL, '未知设备???2021.13月搬至安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842741968897, NULL, NULL, 'GPA2018NL031', '智能监测系统', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842762940417, NULL, NULL, 'GPA2018NL028', '监测系统测试设备', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842779717634, NULL, NULL, 'GPA2018NL029', '监测系统测试设备', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842796494850, NULL, NULL, 'GPC2018NL073', '传导抗扰度一体机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842817466370, NULL, NULL, 'GPC2018NL074', '传导抗扰度一体机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842838437889, NULL, NULL, 'GPC2018NL075', '功率放大设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842859409410, NULL, NULL, 'GPA2018NL036', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842880380929, NULL, NULL, 'GPA2018NL037', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842892963842, NULL, NULL, 'GPA2018NL038', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842918129665, NULL, NULL, 'GPA2018NL039', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842939101185, NULL, NULL, 'GPA2018NL040', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842955878402, NULL, NULL, 'GPA2017NL051', '三轴焊接机器人', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842972655617, NULL, NULL, 'GPA2018NL032', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2017-12-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842989432834, NULL, NULL, 'GPA2018NL033', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2017-12-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843010404354, NULL, NULL, 'GPA2018NL044', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843035570177, NULL, NULL, 'GPA2018NL045', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843064930306, NULL, NULL, 'GPA2018NL046', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843090096130, NULL, NULL, 'GPA2018NL047', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843106873346, NULL, NULL, 'GPA2018NL048', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843123650562, NULL, NULL, 'GPA2018NL049', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843144622082, NULL, NULL, 'GPA2018NL050', '传感器在线智能系统', 'YL-001A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,2014.10.14已经转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843169787906, NULL, NULL, 'GPA2018NL051', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843194953729, NULL, NULL, 'GPA2018NL052', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843215925249, NULL, NULL, 'GPA2018NL053', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843253673985, NULL, NULL, 'GPA2019NL073', '电子秤', '普瑞逊JS-A系列 JS-A06/0.1g', '成都普瑞逊电子有限公司', NULL, NULL, '2019-04-12', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海常衡电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843270451201, NULL, NULL, 'GPG2018NL067', '计量泵', 'VAMD07063PVC010S0000', '上海玛蒙工业设备有限公司', NULL, NULL, '2018-01-29', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海玛蒙工业设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843299811329, NULL, NULL, 'GPC2018NL078', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843316588545, NULL, NULL, 'GPC2018NL079', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-12', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843333365762, NULL, NULL, 'GPC2018NL080', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843354337281, NULL, NULL, 'GPB2018NL038', '超声波模具', 'CE45', '东和超音波机械设备有限公司', NULL, NULL, '2018-09-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843404668929, NULL, NULL, 'GPC2019NH007', '逆变式直流氩弧焊机', 'WSM-500UⅢ;含WP-26氩弧焊矩1套及水箱', '上海沪工焊机(集团)有限公司', NULL, NULL, '2019-04-23', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843505332225, NULL, NULL, 'GPA2019NL004', '光学仪器-显微镜', '100倍', '金华欧视朗商贸有限公司', NULL, NULL, '2019-05-21', NULL, '总工办公室', NULL, NULL, NULL, NULL, NULL, NULL, '2019-05-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '/', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843568246785, NULL, NULL, 'GPG2019NL002', '数显指示表', '数显指示表 货号:543-563DC 型号:ID-H0560', '东莞市钜工五金贸易有限公司', NULL, NULL, '2019-06-17', NULL, '研发二部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞市钜工五金贸易有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843601801217, NULL, NULL, 'GPG2018NL070', '光栅尺', '解析度1um', '东莞鼎企智能自动化科技有限公司', NULL, NULL, '2018-10-22', NULL, '研发一部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843652132866, NULL, NULL, 'GPB2019NL004', 'CCD按键板超声波模具', 'CCD按键 20Khz', '东和超音波机械设备有限公司', NULL, NULL, '2019-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843710853121, NULL, NULL, 'GPB2019NL006', '折弯机模具 (刀模)', '尖刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843740213250, NULL, NULL, 'GPB2019NL007', '折弯机模具 (刀模)', '弯刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843761184770, NULL, NULL, 'GPB2019NL008', '折弯机模具 (刀模)', '圆弧刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843786350593, NULL, NULL, 'GPC2019NH008', '压铆机', '5t 规格', '常州市泰合威机械厂', NULL, NULL, '2019-03-27', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '常州市泰合威机械厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843811516418, NULL, NULL, 'GPC2019NL138', '数控异型(激光)切割机', '长4m×宽3.2m×高1.8m', '东莞市东盟数控机械有限公司', NULL, NULL, '2019-07-09', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞市东盟数控机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843853459457, NULL, NULL, 'GPA2019NL005', '光栅尺', '钢带:MV-53-40N 读头:LIA-20-L801-WA', 'NUMERIK JENA', NULL, NULL, '2019-07-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海微敏自控技术有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843895402498, NULL, NULL, 'GPC2019NH009', 'CK 氩弧焊机', 'WS-250', '东城工具', NULL, NULL, '2019-08-05', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843991871489, NULL, NULL, 'GPC2019NL017', '工业型钻铣床', '黄山牌 XZS4020', '天长市京睿机床有限公司责任公司', NULL, NULL, '2019-07-19', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '天长市京睿机床有限公司责任公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844067368962, NULL, NULL, 'GPC2019NL019', '小型脱水机', 'JR400,带盖子+变频调速', '佛山市顺德区陆锦精密机械制造有限公司', NULL, NULL, '2019-08-16', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '佛山市顺德区陆锦精密机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844084146177, NULL, NULL, 'GPD2018NL048', '智能生产线 (9700自动线新加工站)', '9700LE68传感器调试站', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-08-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '数字化车间9700线新加工站'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844105117698, NULL, NULL, 'GOE2019NL013', '松京除湿机', '松京 DK01-T', '杭州松京电器有限公司', NULL, NULL, '2019-08-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '松京官方旗舰店', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844142866434, NULL, NULL, 'GOA2019NL220', '大屏智能电视(小米)', '65英寸 4K分辨率 软屏 黑色', '小米电器', NULL, NULL, '2019-09-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海奉浦苏宁易购销售有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集看板'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844168032258, NULL, NULL, 'GOA2019NL221', '大屏智能电视(小米)', '65英寸 4K分辨率 软屏 黑色', '小米电器', NULL, NULL, '2019-09-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海奉浦苏宁易购销售有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集看板'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844184809474, NULL, NULL, 'GPC2019NL133', '手持扫描枪', '手持扫描枪 1950 霍尼韦尔', '霍尼韦尔', NULL, NULL, '2019-09-17', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州鸿兴永利电子科技有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844201586690, NULL, NULL, 'GPC2019NL134', '手持扫描枪', '手持扫描枪 1950 霍尼韦尔', '霍尼韦尔', NULL, NULL, '2019-09-17', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州鸿兴永利电子科技有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844218363905, NULL, NULL, 'CPD2019NL114', '大理石平台-框架', 'PDA测试专用平台机柜', '上海皇闽铝业有限公司', NULL, NULL, '2019-09-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台底座'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844235141121, NULL, NULL, 'CPD2019NL115', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844247724034, NULL, NULL, 'CPD2019NL116', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844268695553, NULL, NULL, 'CPD2019NL117', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844289667073, NULL, NULL, 'CPD2019NL118', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844314832897, NULL, NULL, 'CPD2019NL119', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844339998722, NULL, NULL, 'CPD2019NL120', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844360970241, NULL, NULL, 'CPD2019NL121', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844377747457, NULL, NULL, 'CPD2019NL122', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844398718978, NULL, NULL, 'CPD2019NL123', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844419690497, NULL, NULL, 'CPD2019NL124', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844440662018, NULL, NULL, 'CPD2019NL125', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844503576578, NULL, NULL, 'CPD2019NL126', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844524548098, NULL, NULL, 'CPD2019NL127', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844541325314, NULL, NULL, 'CPD2019NL128', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844562296833, NULL, NULL, 'CPD2019NL129', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844583268353, NULL, NULL, 'CPD2019NL130', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844604239874, NULL, NULL, 'CPD2019NL131', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844625211394, NULL, NULL, 'CPD2019NL132', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844641988610, NULL, NULL, 'GPG2019NH004', '气体质量控制器', 'GMFC-CXC-A-N-A1-F2;介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844662960130, NULL, NULL, 'GPG2019NH005', '气体质量控制器', 'GMFC-CXC-A-N-A1-F2;介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844683931650, NULL, NULL, 'GPG2019NH006', '气体质量控制器', 'GMFC-CXC-A-N-A1-F3:介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844709097474, NULL, NULL, 'GPG2019NH007', '管道加热器', 'SY-DQ-2', '东台市双宇工业电炉厂', NULL, NULL, '2019-07-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东台市双宇工业电炉厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844730068993, NULL, NULL, 'GPG2019NH008', 'IODD文件设计工具', 'ITS-BOP-IODD', 'TECONCEPT', NULL, NULL, '2019-10-11', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, 'TECONCEPT', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844751040514, NULL, NULL, 'GPG2019NL020', '斜切割机 DW713', '台湾得伟 DW713', '台湾DEWALT', NULL, NULL, '2019-10-08', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海渝煌五金机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844767817730, NULL, NULL, 'GPD2019NL133', '加香装置工作台', '680*730*1500MM详见图纸', '上海皇闽铝业有限公司', NULL, NULL, '2019-09-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844797177858, NULL, NULL, 'GPC2019NL131', '点胶机控制盒', 'D-260(内含储气罐)', '深圳市轴心自控技术有限公司', NULL, NULL, '2019-09-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844822343682, NULL, NULL, 'GPC2019NL132', '点胶机控制盒', 'D-260(内含储气罐)', '深圳市轴心自控技术有限公司', NULL, NULL, '2019-09-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844843315201, NULL, NULL, 'CPD2019NL134', '大理石平台(PDA测试用)', '定制大理石', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2019-10-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台,单一大理石'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844864286721, NULL, NULL, 'GPC2019NL135', '电源', 'Kikusui PBZ80-5', '上海精测电子有限公司', NULL, NULL, '2019-10-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844881063937, NULL, NULL, 'GPC2019NL136', '电源', 'Kikusui wavy for pbz Sequence Creation Softwarefor', '上海精测电子有限公司', NULL, NULL, '2019-10-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844914618369, NULL, NULL, 'GOA2019NL242', '丽标号码管打印机', 'C-210E', '佳能丽标', NULL, NULL, '2019-04-10', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844943978497, NULL, NULL, 'GPC2019NL137', 'HITACHI(日立)喷码机', 'UX-H140S', '日本HITACHI(日立)', NULL, NULL, '2019-11-08', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '辉泉机电设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844973338625, NULL, NULL, 'GPA2019NL062', '高低温交变试验箱', '高低温交变试验箱 C4-180PRO+开孔', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2019-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845002698753, NULL, NULL, 'GPA2019NL063', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845032058882, NULL, NULL, 'GPA2019NL064', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845061419010, NULL, NULL, 'GPA2019NL065', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845094973441, NULL, NULL, 'GPA2019NL066', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845124333570, NULL, NULL, 'GPA2019NL067', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845157888001, NULL, NULL, 'GPC2020NL137', '收卷机', 'F2100;F1500', '张家港市帝达机械有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845191442433, NULL, NULL, 'GPC2020NL138', '转盘式立切机', 'Φ4600×H650mm', '扬州福达海绵机械有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '扬州福达海绵机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845216608258, NULL, NULL, 'GPC2020NH021', '拼装平台', '2500mm*5000mm', '泊头市国晟机械制造有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845250162689, NULL, NULL, 'GPC2020NH022', '拼装平台', '2500mm*5000mm', '泊头市国晟机械制造有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845275328514, NULL, NULL, 'GPG2020NL021', '上海皇闽铝业有限公司', 'HM190423 1MB19210 (基恩士激光刻印机机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2019-10-03', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845300494337, NULL, NULL, 'GPA2020NL068', '光电测量仪器*信号源', '3030-01', '北京信测科技有限公司', NULL, NULL, '2019-09-09', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '北京信测科技有限公司', NULL, NULL, NULL, NULL, '此设备为2018年EMC实验室升级改造替换品,原来3010厂家回收'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845329854466, NULL, NULL, 'GPG2020NL022', '隔振光学平台', '隔振光学平台 600*1200*100', '河北成利朋电器设备有限公司', NULL, NULL, '2020-01-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '河北成利朋电器设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845355020290, NULL, NULL, 'GPC2020NL143', '胶带切割机', 'cut-870', '昆山浩卓自动化设备有限公司', NULL, NULL, '2020-01-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山浩卓自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845371797505, NULL, NULL, 'GPA2020NL069', '密封监测系统 TTL-W016', '密封监测系统 TTL-W016', '上海仁莫电子科技有限公司', NULL, NULL, '2019-12-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845392769025, NULL, NULL, 'GPD2020NL134', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845413740545, NULL, NULL, 'GPD2020NL135', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845451489282, NULL, NULL, 'GPD2020NL136', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845476655106, NULL, NULL, 'GPD2020NL137', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845497626626, NULL, NULL, 'GPD2020NL138', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845514403842, NULL, NULL, 'GPD2020NL139', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845531181057, NULL, NULL, 'GPD2020NL140', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845547958273, NULL, NULL, 'GPD2020NL141', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845564735489, NULL, NULL, 'GPD2020NL142', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845585707009, NULL, NULL, 'GPD2020NL143', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845606678529, NULL, NULL, 'GPD2020NL144', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845619261441, NULL, NULL, 'GPD2020NL145', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845640232962, NULL, NULL, 'GPD2020NL146', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845661204481, NULL, NULL, 'GPD2020NL147', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845673787394, NULL, NULL, 'GPD2020NL148', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845690564610, NULL, NULL, 'GPD2020NL149', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845711536129, NULL, NULL, 'GPD2020NL150', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845728313346, NULL, NULL, 'GPD2020NL151', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845745090562, NULL, NULL, 'GPD2020NL152', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845757673474, NULL, NULL, 'GPD2020NL153', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845774450690, NULL, NULL, 'GPD2020NL154', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845791227905, NULL, NULL, 'GPD2020NL155', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845812199426, NULL, NULL, 'GPD2020NL156', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845824782337, NULL, NULL, 'GPD2020NL160', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845841559553, NULL, NULL, 'GPD2020NL161', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845854142466, NULL, NULL, 'GPD2020NL162', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845866725378, NULL, NULL, 'GPD2020NL163', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845883502594, NULL, NULL, 'GPD2020NL164', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845900279809, NULL, NULL, 'GPD2020NL165', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845917057026, NULL, NULL, 'GPD2020NL166', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845933834241, NULL, NULL, 'GPD2020NL167', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845946417153, NULL, NULL, 'GPG2020NL023', '安卓不干胶二维码标签手持扫描复制打印一体', '手持扫描打印一体', '深圳市群索科技有限公司', NULL, NULL, '2019-07-17', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市群索科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845959000066, NULL, NULL, 'GOA2020NL011', '台电X4 11.6英寸平板电脑', '台电X4 11.6寸 win10系统', '台积电科技有限公司', NULL, NULL, '2020-04-17', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'SMT用IPQC检验核对资料用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845984165890, NULL, NULL, 'GPC2020NH023', '单工位收卷机', '收卷直径1500mm,工作幅宽800mm', '张家港市帝达机械有限公司', NULL, NULL, '2020-04-09', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845996748802, NULL, NULL, 'GPC2020NL146', '压排线设备', '气动,间距1.27,4P-64P', '东莞市常平腾达机械厂', NULL, NULL, '2020-04-10', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市常平腾达机械厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846013526017, NULL, NULL, 'GPG2020NL027', '真空干燥箱', 'DZF-6020AB', '湖南力辰仪器科技有限公司', NULL, NULL, '2020-04-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846026108930, NULL, NULL, 'GPG2020NL028', '旋片式真空泵', '2XZ-2', '湖南力辰仪器科技有限公司', NULL, NULL, '2020-04-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846047080449, NULL, NULL, 'GPD2020NL168', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846059663362, NULL, NULL, 'GPD2020NL169', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846076440577, NULL, NULL, 'GPD2020NL170', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846093217793, NULL, NULL, 'GPD2020NL171', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846122577922, NULL, NULL, 'GPD2020NL172', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846139355138, NULL, NULL, 'GPD2020NL173', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846164520962, NULL, NULL, 'GPD2020NL174', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846185492482, NULL, NULL, 'GPD2020NL175', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846214852609, NULL, NULL, 'GPD2020NL176', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846235824129, NULL, NULL, 'GPD2020NL177', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846256795650, NULL, NULL, 'GPD2020NL178', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846277767169, NULL, NULL, 'GPD2020NL179', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846307127298, NULL, NULL, 'GPD2020NL180', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846357458946, NULL, NULL, 'GPD2020NL181', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846391013378, NULL, NULL, 'GPD2020NL182', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846428762113, NULL, NULL, 'GPD2020NL183', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846449733633, NULL, NULL, 'GPD2020NL184', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846466510850, NULL, NULL, 'GPD2020NL185', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846483288066, NULL, NULL, 'GPD2020NL186', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846508453889, NULL, NULL, 'GPD2020NL187', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846521036802, NULL, NULL, 'GPD2020NL188', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846537814018, NULL, NULL, 'GPD2020NL189', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846554591234, NULL, NULL, 'GPD2020NL190', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846571368450, NULL, NULL, 'GPD2020NL191', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846588145666, NULL, NULL, 'GPD2020NL192', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846604922881, NULL, NULL, 'GPC2020NL147', '低压注塑设备', 'LPMS 2000,双工位', '东莞市天赛塑胶机械有限公司', NULL, NULL, '2020-04-24', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-05-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '牧蔓电子科技(上海)有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2023年7月转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846621700098, NULL, NULL, 'GPC2020NH024', '气保焊机', '上海沪工NB-350E', '上海沪工焊接集团股份有限公司', NULL, NULL, '2020-05-26', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846634283010, NULL, NULL, 'GPC2020NH025', '空压机', '4*1100-160L', '台州市奥突斯工贸有限公司', NULL, NULL, '2020-05-26', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海真毅电子商务有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846651060225, NULL, NULL, 'GPA2020NL073', '工作台(高低温周边用)', '定制规格', '上海昶申铝业有限公司', NULL, NULL, '2020-05-28', NULL, '实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846663643137, NULL, NULL, 'GPC2020NL149', 'SMT上板机', '标准款HY-250LD', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846680420354, NULL, NULL, 'GPC2020NL150', 'SMT收板机', '标准款', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846697197570, NULL, NULL, 'GPC2020NL151', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846709780482, NULL, NULL, 'GPC2020NL152', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846726557698, NULL, NULL, 'GPC2020NL153', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846743334914, NULL, NULL, 'GPC2020NL154', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846760112130, NULL, NULL, 'GPC2020NL155', 'SMT接驳台', '1.20米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新,2021.12月搬迁至安徽工厂'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846776889346, NULL, NULL, 'GPA2020NL074', 'KohYoung在线3D SPI', '韩国科样8030-3', '韩国KOYUNG 科样电子设备', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, '合同价:34万', NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木二手,两台设备票开在一起,编号同'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846789472257, NULL, NULL, 'GPA2020NL074-2', '德律在线3D AOI', 'TR7700_SIII', '台湾德律科技股份有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, '合同价:31万', NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846806249474, NULL, NULL, 'GPC2020NL156', 'GKG全自动锡膏印刷机', 'GKG G5新款', '东莞凯格精密电子设备有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846823026690, NULL, NULL, 'GPC2020NL157', '超音波塑胶熔接机', '东和 ATGS-2025E 网络版', '东和超音波机械设备有限公司', NULL, NULL, '2020-05-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '新购买设备,用于PSE'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846839803906, NULL, NULL, 'GPB2020NL046', 'CNC维修专用台虎钳', '8寸带底T牙', '上海赛格电子', NULL, NULL, '2020-04-14', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海赛格电子', NULL, NULL, NULL, NULL, '金工车间NX36加工中心用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846856581121, NULL, NULL, 'GPA2020NL077', '测试台(测试用平台架)', '规格:600*520*800 图纸号:1MB20261(V3.0)', '上海皇闽铝业有限公司', NULL, NULL, '2020-07-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-07-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846869164034, NULL, NULL, 'GPC2020NL160', 'NG/OK 收板机', '标准左到右 NLS250-2', '深圳市德科绿阳科技发展有限公司', NULL, NULL, '2020-07-28', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市德科绿阳科技发展有限公司', NULL, NULL, NULL, NULL, '新添SMT线,在线AOI后端使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846885941249, NULL, NULL, 'GPA2020NL078', 'LCR数字电桥', '同惠,TH2810B+ 10kHZ 0.1%精度', '常州同恵电子有限公司', NULL, NULL, '2020-08-10', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, NULL, '质量管理部 IQC使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846902718466, NULL, NULL, 'GPC2020NH029', '空压机', '4*110-160L', '奥突斯厂家', NULL, NULL, '2020-09-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海真毅电子商务有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846919495682, NULL, NULL, 'GPC2020NH030', '手动液压车', 'NPL25-510', '上海长锦机电设备有限公司', NULL, NULL, '2020-09-17', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846936272897, NULL, NULL, 'GPC2020NH031', '手动液压车', 'NPL25-510', '上海长锦机电设备有限公司', NULL, NULL, '2020-09-17', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846948855810, NULL, NULL, 'GPC2020NL162', '自动绕线机(扎线机)', '扎线机', '东莞市博强自动化设备有限公司', NULL, NULL, '2020-09-03', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '更换过大功率电机,增加30%力'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847280205825, NULL, NULL, 'GPB2020NH023', '夹具', '沸石转轮用夹具', '常州维克低温设备有限公司', NULL, NULL, '2020-10-09', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847301177346, NULL, NULL, 'GPB2020NH024', '夹具', '沸石转轮用夹具', '常州维克低温设备有限公司', NULL, NULL, '2020-10-09', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847322148866, NULL, NULL, 'GPC2020NL170', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847338926082, NULL, NULL, 'GPC2020NL171', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847355703297, NULL, NULL, 'GPC2020NL172', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847372480514, NULL, NULL, 'GPC2020NL174', '氩弧焊机', '沪工WSM-400E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2020-11-10', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847397646337, NULL, NULL, 'GPC2020NL175', '剥线机', 'ZKS-12(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847418617857, NULL, NULL, 'GPC2020NL176', '剥线机', 'HC-515(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', '4', '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847431200769, NULL, NULL, 'GPC2020NL177', 'HAKKO送线机', 'MK-005(非全新,二手设备)', '日本HAKKO', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847447977985, NULL, NULL, 'GPC2020NL178', '拉力机(计)', 'MK-1000N(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847464755202, NULL, NULL, 'GPC2020NL179', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2020-11-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847481532418, NULL, NULL, 'GPC2020NL180', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2020-11-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847498309634, NULL, NULL, 'GPC2020NH037', '瓦楞机', '直径214mm,45号钢', '江阴市康维机械制造有限公司', NULL, NULL, '2020-12-07', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江阴市康维机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847536058370, NULL, NULL, 'GPC2020NH038', '翻转机', '0-90度翻转', '上海宝锻机械制造有限公司', NULL, NULL, '2020-12-07', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海宝锻机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847552835585, NULL, NULL, 'GPC2020NL186', '自动绕线扎线机', 'BOQO2000型 扎带范围80-140mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2020-12-14', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847565418498, NULL, NULL, 'GPC2020NH046', '电子地磅', 'SCS-1T', '上海奕宇电子科技有限公司', NULL, NULL, '2020-12-30', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海奕宇电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847582195714, NULL, NULL, 'GPC2021NL188', '多通道电源', 'GPS-3030CDD 固纬', '台湾固纬电子', NULL, NULL, '2020-12-01', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连所店有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847598972930, NULL, NULL, 'GPC2021NL189', '多通道电源', 'GPS-3030CDD 固纬', '台湾固纬电子', NULL, NULL, '2020-12-01', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连所店有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847619944450, NULL, NULL, 'GPB2021NL049', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847632527361, NULL, NULL, 'GPB2021NL050', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847653498882, NULL, NULL, 'GPB2021NL051', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847670276097, NULL, NULL, 'GPB2021NL052', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847687053313, NULL, NULL, 'GPB2021NL053', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847703830530, NULL, NULL, 'GPB2021NL054', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847724802049, NULL, NULL, 'GPB2021NL055', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847741579266, NULL, NULL, 'GPB2021NL056', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847758356482, NULL, NULL, 'GPB2021NL057', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847833853953, NULL, NULL, 'GPB2021NL058', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847863214081, NULL, NULL, 'GPC2021NL192', '超音波塑胶熔接机', 'ATGS-3512e', '东和超音波机械设备有限公司', NULL, NULL, '2021-01-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山新东和超音波设备有限公司', NULL, NULL, NULL, NULL, '传感器车间使用,2024.05.20转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847892574209, NULL, NULL, 'GPD2021NL201', '大理石平台框架', '定制铝合金框架', '上海皇闽铝业有限公司', NULL, NULL, '2021-01-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '传感器车间使用PDA测试平台'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847917740033, NULL, NULL, 'GPD2021NL202', '大理石平台', '1600*600*150', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2021-01-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, '传感器车间使用PDA测试平台'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847942905857, NULL, NULL, 'GPC2021NL196', '全自动点料机', 'dps-682', '深圳市嘉睿轩自动化科技有限公司', NULL, NULL, '2021-01-23', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-02-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市嘉睿轩自动化科技有限公司', NULL, NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847976460289, NULL, NULL, 'GPC2021NL197', '全自动打包机', 'MH101A', '杭州永创', NULL, NULL, '2021-03-01', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-03-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '名玥智能设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848001626114, NULL, NULL, 'GPC2021NL198', 'YAMAHA贴片机', 'YSM-20R', '日本YAMAHA', NULL, NULL, '2021-03-10', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2021-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, 'SMT2线新加设备'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848026791938, NULL, NULL, 'GPC2021NL199', 'TOYO 电缸(加驱动器)', 'CTH5-L5-150-M-TC100-01', '日本TOYO', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海全岩自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848056152066, NULL, NULL, 'GPC2021NL200', 'TOYO 电缸(加驱动器)', 'CTH5-L5-150-M-TC100-01', '日本TOYO', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海全岩自动化科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848081317890, NULL, NULL, 'GPC2021NL201', '示波器(周立功)', 'ZDS2024B Plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848106483714, NULL, NULL, 'GPC2021NL202', 'QUICK 三轴平台', 'ET8383-不含点胶头及控制器', '快克智能装备股份有限公司', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848135843842, NULL, NULL, 'GPC2021NL203', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848161009665, NULL, NULL, 'GPC2021NL204', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848177786881, NULL, NULL, 'GPC2021NL205', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848198758401, NULL, NULL, 'GPC2021NL206', '单色油蛊移印机', '单色机', '上海盈辉机械设备有限公司', NULL, NULL, '2021-04-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海盈辉机械设备有限公司', NULL, NULL, NULL, NULL, '移印间设备,2022.11.15调拨到安徽兰宝,胡安华使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848219729922, NULL, NULL, 'GOE2021NL052', '美的空调', '三匹变频空调(380V)', '广东美的制冷设备有限公司', NULL, NULL, '2021-04-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海隽扬实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848236507137, NULL, NULL, 'GPD2021NL204', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848257478657, NULL, NULL, 'GPD2021NL205', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848274255874, NULL, NULL, 'GPD2021NL206', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848295227394, NULL, NULL, 'GPD2021NL207', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848312004610, NULL, NULL, 'GPD2021NL208', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848337170433, NULL, NULL, 'GPC2021NL207', '高低温交变试验箱', 'C4-180PRO', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2021-05-06', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848349753346, NULL, NULL, 'GPC2021NL209', '线材摇摆试验机', '180度智能触摸屏', '广东艾瑞斯仪器科技有限公司', NULL, NULL, '2021-05-06', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '广东艾瑞斯仪器科技有限公司', NULL, NULL, NULL, NULL, '质量管理部 IQC使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848370724866, NULL, NULL, 'GPC2021NL210', '高明铁电动滑台组件', 'GKA60110-1280-12P-P20-CD-57', '高明铁', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848387502082, NULL, NULL, 'GPC2021NL211', '高明铁电动滑台组件', 'GKA60110-1280-12P-P20-CD-57', '高明铁', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848404279297, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, NULL, NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848421056514, NULL, NULL, 'GPC2022NH056', '戴尔电脑(显示器)', '21.5英寸( 显示屏)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848437833730, NULL, NULL, 'GOA2021NL010', '戴尔电脑(PDA平台用)', '8g i5-1t(主机)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848454610946, NULL, NULL, 'GOA2021NL011', '戴尔电脑(显示器)', '21.5英寸( 显示屏)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848475582466, NULL, NULL, 'GOA2021NL012', '戴尔电脑(PDA平台用)', '8g i5-1t(主机)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848492359681, NULL, NULL, 'GPC2021NL213', '剥皮扭线机', '3fn气动', '深圳亿佳机械', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳亿佳机械(淘宝买)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848509136898, NULL, NULL, 'GPC2021NL214', '三刷带扭线机', 'jdc精达昌', '深圳市精达昌科技有限公司', NULL, NULL, '2021-05-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精达昌科技有限公司(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848530108417, NULL, NULL, 'GPA2021NL087', '加压防水测试仪', 'IK-IPLT-20ZDS 7 寸触摸屏+曲线控压', '上海煜南仪器有限公司', NULL, NULL, '2021-04-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海煜南仪器有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848551079937, NULL, NULL, 'GPD2021NL211', '货架', '2000*600*2000cm', '上海皓臻工业设备有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848567857154, NULL, NULL, 'GPC2021NL215', '剥皮焊线机', 'jc-h-553', '深圳市精驰自动化', NULL, NULL, '2021-04-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848584634369, NULL, NULL, 'GPC2021NL217', '钻攻加工中心', 'HD-T640 CNC', '江苏厚道数控科技有限公司', NULL, NULL, '2021-06-12', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848605605890, NULL, NULL, 'GPC2021NL218', '封口机', 'FR600', '浙江鼎业机械设备有限公司', NULL, NULL, '2021-06-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '浙江鼎业机械设备有限公司', NULL, NULL, NULL, NULL, '检测包装线使用设备,2024.09.24转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848622383106, NULL, NULL, 'GPC2021NL219', '高精密立式注塑机', 'TY-400,螺杆直径Φ18mm,锁模力40T', '昆山奥维兹机械设备有限公司', NULL, NULL, '2021-06-12', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '杭州大禹机械设备', NULL, NULL, NULL, NULL, '2023.01.10转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848634966017, NULL, NULL, 'GOA2021NL017', '台式电脑 (主机)', '戴尔电脑8g i5-1t-21.5英寸屏', '戴尔电脑', NULL, NULL, '2021-06-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岩阳商贸有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848651743234, NULL, NULL, 'GOA2021NL018', '台式电脑 (显示器)', '戴尔电脑8g i5-1t-21.5英寸屏', '戴尔电脑', NULL, NULL, '2021-06-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岩阳商贸有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848668520450, NULL, NULL, 'NPG2021H006', '电子秤', '500G/0.001', '东阳市英衡智能设备有限公司', NULL, NULL, '2021-06-21', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东阳市英衡智能设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848685297666, NULL, NULL, 'GPC2021WL001', '高精度通用烫压台', '通用款', '上海兰宝传感科技股份有限公司', NULL, NULL, '2021-06-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海兰宝传感科技股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848702074881, NULL, NULL, 'GPC2021NL222', '进口高低温试验箱', 'labEvent L T/54/40/3', '伟思富奇环境试验仪器太仓有限公司(德国原装进口)', NULL, NULL, '2021-03-16', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '伟思富奇环境试验仪器太仓有限公司', NULL, NULL, NULL, NULL, '德国伟思富奇,定制设备64L'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848718852097, NULL, NULL, 'GPB2021NL061', '加工中心平口钳', 'HVL-160V', '昆山鑫雄鹰精密机械有限公司', NULL, NULL, '2021-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山鑫雄鹰精密机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848735629313, NULL, NULL, 'GPB2021NL062', '加工中心平口钳', 'HVL-160V', '昆山鑫雄鹰精密机械有限公司', NULL, NULL, '2021-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山鑫雄鹰精密机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848819515394, NULL, NULL, 'NPG2021NL007', '电子秤', '30kg/2g', '苏州淮宏电子有限公司', NULL, NULL, '2021-07-09', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州淮宏电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848844681217, NULL, NULL, 'GPC2021NL224', '分板机(和椿)', 'AUO 3000 -UC', '和椿自动化设备有限公司', NULL, NULL, '2021-07-05', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州昆创电子科技有限公司', NULL, NULL, NULL, NULL, '前加工使用,位于SMT线末端'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848861458434, NULL, NULL, 'GPC2021NL226', '自动灌胶机', 'SEC-3030B', '苏州世椿新能源', NULL, NULL, '2021-06-28', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州世椿新能源', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848878235650, NULL, NULL, 'GPG2021NL040', '防爆柜', '22加仑', '宿迁企德金属科技有限公司', NULL, NULL, '2021-07-19', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宿迁企德金属科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848895012866, NULL, NULL, 'GPC2021NL227', '工业集尘器', 'DL-2200-80', '江苏全风环保科技有限公司', NULL, NULL, '2021-07-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏全风环保科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848920178690, NULL, NULL, 'GPA2021NL096', '电子负载', 'IT8511B+', '深圳市仪表世界连锁店有限公司', NULL, NULL, '2021-07-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848945344514, NULL, NULL, 'GPB2021NL064', '超音波模具(35khz)', 'PST-YC滤光片超声波模具', '昆山东和超声波设备有限公司', NULL, NULL, '2021-07-12', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '用于新产品PST-YC滤光片'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848974704641, NULL, NULL, 'GPG2021NL041', '固纬直流电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2021-08-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848995676162, NULL, NULL, 'GPG2021NL042', '固纬直流电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2021-08-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849020841985, NULL, NULL, 'GPC2021NL228', '除尘式砂轮机', 'MC3025', '杭州西恒机械有限公司', NULL, NULL, '2021-08-18', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-09-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '杭州西恒机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849041813505, NULL, NULL, 'GPB2021NL065', '数控分度盘', 'THRT-5AX-AR170', '嘉兴天合机械有限公司', NULL, NULL, '2021-08-16', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-09-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '嘉兴天合机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849071173633, NULL, NULL, 'GPA2021NL097', '盐雾实验机', 'AOTSI-90H', '东莞市澳腾斯仪器有限公司', NULL, NULL, '2021-10-17', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市澳腾斯仪器有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849100533761, NULL, NULL, 'GOB2021NL038', '标签打印机', 'BTP-6300I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2021-10-08', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '南京力凯斯网络科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849121505281, NULL, NULL, 'GPC2021NL229', '示波器 (周立功)', 'ZDS2024B plus', '广州致远电子有限公司', NULL, NULL, '2021-10-09', NULL, '兰埔研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849142476801, NULL, NULL, 'GPC2021NL230', '剥皮焊线机', 'jc-h-553', '深圳市精驰自动化', NULL, NULL, '2021-04-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849159254018, NULL, NULL, 'GPC2021NL231', '剥皮焊线机', 'jc-h-554', '深圳市精驰自动化', NULL, NULL, '2021-08-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, NULL, '用于6920短线焊接,2023年9月14 由上海公司转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849176031234, NULL, NULL, 'GPA2021NL100', '显微镜', '500万像素 带11.3寸屏', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2021-10-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '三锵泰达光学仪器(天猫)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849192808449, NULL, NULL, 'GPC2021NL232', '田中绕线机', 'AX-1', '浙江田中精机股份有限公司', NULL, NULL, '2021-10-20', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市璟玥科技发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849209585665, NULL, NULL, 'GPC2021NL234', '自动绕线机(扎线机)', 'OD25-40MM', '东莞市博强自动化设备有限公司', NULL, NULL, '2021-10-27', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849230557186, NULL, NULL, 'GPC2021NL235', '点胶机 (控制器)', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2021-10-05', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849243140097, NULL, NULL, 'GPC2021NL236', '自动剥线机', '电脑剥外皮芯线机', '江苏博之旺自动化设备有限公司', NULL, NULL, '2021-09-16', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849259917313, NULL, NULL, 'GPC2021NL237', '双液灌胶设备', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2021-09-15', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849280888834, NULL, NULL, 'GPC2022NH053', '烘箱', '550℃烘箱', '深圳市耐美特工业设备有限公司上海', NULL, NULL, '2021-12-13', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市耐美特工业设备有限公司上海', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849297666049, NULL, NULL, 'GPC2022NH054', '烘箱', '300℃烘箱', '深圳市耐美特工业设备有限公司上海', NULL, NULL, '2021-12-13', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市耐美特工业设备有限公司上海', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849314443266, NULL, NULL, 'GOA2021NL040', '电脑主机 (Autobag包装机用)', '组装机', '上海签成企业管理有限公司', NULL, NULL, '2021-12-04', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'Autobag包装机备用主机'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849339609089, NULL, NULL, 'GPC2021NL238', '手推洗地机', 'RS-D3锂电款', '安徽荣庆清洁科技有限公司', NULL, NULL, '2021-11-18', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '安徽荣庆清洁科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849356386306, NULL, NULL, 'GPC2022NL241', '手动平台车', 'PTS1000', '无锡中仓搬运设备有限公司', NULL, NULL, '2022-01-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-02-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '无锡中仓搬运设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849373163521, NULL, NULL, 'NPG2022H011', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849398329346, NULL, NULL, 'NPG2022H012', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849415106562, NULL, NULL, 'NPG2022H013', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849431883777, NULL, NULL, 'NPG2022H014', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849452855297, NULL, NULL, 'NPG2022H015', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849473826818, NULL, NULL, 'NPG2022H016', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849490604034, NULL, NULL, 'NPG2022H017', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849515769858, NULL, NULL, 'NPG2022H018', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849532547074, NULL, NULL, 'NPG2022H019', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849553518594, NULL, NULL, 'NPG2022H020', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849645793282, NULL, NULL, 'NPG2022H021', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849670959106, NULL, NULL, 'NPG2022H022', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849696124930, NULL, NULL, 'NPG2022H023', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849717096450, NULL, NULL, 'NPG2022H024', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849742262273, NULL, NULL, 'NPG2022H025', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849775816706, NULL, NULL, 'NPG2022H026', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849855508482, NULL, NULL, 'NPG2022H027', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849910034433, NULL, NULL, 'NPG2022H028', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849956171778, NULL, NULL, 'NPG2022H029', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850006503426, NULL, NULL, 'NPG2022H030', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850065223682, NULL, NULL, 'NPG2022H031', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850102972418, NULL, NULL, 'NPG2022H032', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850144915458, NULL, NULL, 'NPG2022H033', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850199441409, NULL, NULL, 'NPG2022H034', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850241384450, NULL, NULL, 'NPG2022H035', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850270744577, NULL, NULL, 'NPG2022H036', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850291716097, NULL, NULL, 'NPG2022H037', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850312687617, NULL, NULL, 'NPG2022H038', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850337853441, NULL, NULL, 'NPG2022H039', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850358824961, NULL, NULL, 'NPG2022H040', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850375602178, NULL, NULL, 'GPD2022NL227', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850396573697, NULL, NULL, 'GPD2022NL228', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850421739521, NULL, NULL, 'GPD2022NL229', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850442711042, NULL, NULL, 'GPD2022NL230', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850463682561, NULL, NULL, 'GPD2022NL231', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850493042689, NULL, NULL, 'GPD2022NL232', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850509819906, NULL, NULL, 'GPD2022NL233', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850526597122, NULL, NULL, 'GPD2022NL234', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850543374338, NULL, NULL, 'GPD2022NL235', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850568540162, NULL, NULL, 'GPD2022NL236', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850585317378, NULL, NULL, 'GPD2022NL237', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850602094593, NULL, NULL, 'GPD2022NL238', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850631454722, NULL, NULL, 'GPD2022NL239', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850648231938, NULL, NULL, 'GPD2022NL240', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850669203457, NULL, NULL, 'GPD2022NL241', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850694369281, NULL, NULL, 'GPD2022NL242', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850715340802, NULL, NULL, 'GPD2022NL243', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850732118018, NULL, NULL, 'GPD2022NL244', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850748895233, NULL, NULL, 'GPD2022NL245', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850774061058, NULL, NULL, 'GPD2022NL246', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850795032578, NULL, NULL, 'GPD2022NL247', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850811809794, NULL, NULL, 'GPD2022NL248', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850841169922, NULL, NULL, 'GPD2022NL249', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850857947137, NULL, NULL, 'GPD2022NL250', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850874724353, NULL, NULL, 'GPD2022NL251', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850904084481, NULL, NULL, 'GPD2022NL252', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850920861697, NULL, NULL, 'GPD2022NL253', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850941833218, NULL, NULL, 'GPD2022NL254', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850958610434, NULL, NULL, 'GPD2022NL255', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850979581953, NULL, NULL, 'GPD2022NL256', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850996359169, NULL, NULL, 'GPD2022NL257', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851017330690, NULL, NULL, 'GPD2022NL258', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851042496513, NULL, NULL, 'GPD2022NL259', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851063468033, NULL, NULL, 'GPD2022NL260', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851080245250, NULL, NULL, 'GPD2022NL261', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851097022466, NULL, NULL, 'GPD2022NL262', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851113799681, NULL, NULL, 'GPD2022NL263', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851134771202, NULL, NULL, 'GPD2022NL264', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851151548418, NULL, NULL, 'GPD2022NL265', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851168325633, NULL, NULL, 'GPD2022NL266', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851197685762, NULL, NULL, 'GPD2022NL267', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851218657281, NULL, NULL, 'GPD2022NL268', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851235434498, NULL, NULL, 'GPD2022NL269', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851264794625, NULL, NULL, 'GPD2022NL270', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851281571842, NULL, NULL, 'GPD2022NL271', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851306737666, NULL, NULL, 'GPD2022NL272', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851336097794, NULL, NULL, 'GPD2022NL273', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851357069313, NULL, NULL, 'GPD2022NL274', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851378040834, NULL, NULL, 'GPD2022NL275', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851407400962, NULL, NULL, 'GPC2022NL240', '空压机(ESUAN)', 'ES120L', '淘宝购买', NULL, NULL, '2022-01-27', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-02-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '绕线圈设备夜间专供气源用,2024.08.22转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851424178178, NULL, NULL, 'GPC2022NL242', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-02-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851445149697, NULL, NULL, 'GPC2022NL243', '伺服张力送线器', '电子式张力器SFD800-CL', '东莞市友吉电子有限公司', NULL, NULL, '2022-02-05', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, 'MX1804机器用,小张力LE18产品'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851474509826, NULL, NULL, 'GPC2022NL244', '群脉冲发生器', 'EFT-405CN丶EFTC', '上海凌世电磁技术有限公司', NULL, NULL, '2022-02-06', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海凌世电磁技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851495481346, NULL, NULL, 'GPC2022NL245', '传感抗干扰一体机', 'RIS-6091-85', '上海凌世电磁技术有限公司', NULL, NULL, '2022-02-06', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海凌世电磁技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用,无法使用已退货,账目消除'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851520647170, NULL, NULL, 'GPC2022NL246', '高低温试验箱', 'M/THP-800L', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-01-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851545812993, NULL, NULL, 'GPD2022NL224', '高层货架', '四层*2排+三层*2排', '上海宏扬仓储设备有限公司', NULL, NULL, '2022-03-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海宏扬仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851562590210, NULL, NULL, 'GPC2022NL247', '立式注塑机', 'TY-600', '杭州大禹机械有限公司', NULL, NULL, '2022-02-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山奥维兹机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851583561730, NULL, NULL, 'GPC2022NL248', '高低温箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-02-16', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851617116162, NULL, NULL, 'GPC2022NL249', '剥打一体端子机', '亚拓定制 剥打一体机', '昆山亚拓机械设备有限公司', NULL, NULL, '2021-12-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851642281985, NULL, NULL, 'GPC2022NL250', '数控CNC加工中心', 'HD-T640 M80 12000rpm', '江苏厚道数控科技有限公司', NULL, NULL, '2022-02-16', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851675836417, NULL, NULL, 'GPC2022NL251', '高低温箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-02-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851692613633, NULL, NULL, 'GPC2022NL252', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-03-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851713585153, NULL, NULL, 'GPC2022NL253', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-03-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, NULL, '传感器车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851734556674, NULL, NULL, 'GPC2022NL254', '立式注塑机', 'AT-550.2R(转盘机)', '杭州爱科机械有限公司', NULL, NULL, '2022-02-09', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '杭州爱科机械有限公司', NULL, NULL, NULL, NULL, '2023.01.10转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851768111105, NULL, NULL, 'GPA2022NL101', '针床测试台', 'LBJ-UC10-B023产品测试治具', '昆山陆兴泰电子有限公司', NULL, NULL, '2022-03-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山陆兴泰电子有限公司', NULL, NULL, NULL, NULL, '用于测试LBJ-UC10-B023产品'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851793276929, NULL, NULL, 'GPA2022NL102', '高压脉冲试验仪', '远方 HVP-2', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2022-02-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室 DQM部,老设备抵扣2k换购。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851826831361, NULL, NULL, 'GPC2022NL255', '空心线圈绕线机', '欣宝XB130', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-03-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工新增设备,跟田中差距甚远,2022.11.11转安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851851997186, NULL, NULL, 'GPA2022NL103', '高精度传感器测试仪', '众泰兴(定制)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-18', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '未知设备???,RD实验室10米黑色测试平台'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851868774402, NULL, NULL, 'GPG2022NL057', '隔震光学实验平台', '众泰兴(定制)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-11', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851893940225, NULL, NULL, 'GPC2022NL257', '高低温试验箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2022-05-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851914911745, NULL, NULL, 'GPC2022NL258', '高低温试验箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2022-05-18', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851935883266, NULL, NULL, 'NPA2022NL014', '电子秤', '30kg/2g', '上海信衡电子有限公司', NULL, NULL, '2022-05-24', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海信衡电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851973632001, NULL, NULL, 'GPG2022NL058', '电动叉车', 'TEU 1.5吨站立前移式', '安徽梯易优叉车有限公司', NULL, NULL, '2022-05-10', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海瑞顶叉车有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852002992129, NULL, NULL, 'GPC2022NL256', '液压车', 'DF30*550*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-05-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝旗舰店', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852032352257, NULL, NULL, 'GPC2021NH051', '收卷机胶辊', '直径345mm,网纹3mm', '张家港市帝达机械有限公司', NULL, NULL, '2021-12-21', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852061712386, NULL, NULL, 'GPB2022NH109', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852095266818, NULL, NULL, 'GPB2022NH110', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852120432641, NULL, NULL, 'GPB2022NH111', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852141404162, NULL, NULL, 'GPB2022NH112', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852170764289, NULL, NULL, 'GPB2022NH113', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852200124418, NULL, NULL, 'GPB2022NH114', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852237873153, NULL, NULL, 'GPB2022NH115', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852275621890, NULL, NULL, 'GPB2022NH116', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852304982018, NULL, NULL, 'GPG2022NH032', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852330147842, NULL, NULL, 'GPG2022NH033', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852355313665, NULL, NULL, 'GPG2022NH034', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852380479490, NULL, NULL, 'GPD2022NH038', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852409839618, NULL, NULL, 'GPD2022NH039', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852439199746, NULL, NULL, 'GPD2022NH040', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852460171266, NULL, NULL, 'GPD2022NH041', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852485337089, NULL, NULL, 'GPG2022NH036', '焊接平台', '3000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852514697218, NULL, NULL, 'GPG2022NH037', '焊接平台', '5000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852539863042, NULL, NULL, 'GPG2022NH038', '焊接平台', '5000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852594388994, NULL, NULL, 'GPC2022NL260', '焊锡机', 'R30/9700骨架线圈引脚上锡(非标定制)', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-05-11', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, 'R30/9700骨架线圈引脚上锡'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852636332034, NULL, NULL, 'GPC2022NL261', '新东和超声波焊接机', '35Khz', '昆山东和超声波设备有限公司', NULL, NULL, '2022-06-15', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '置于新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852669886465, NULL, NULL, 'GPB2022NL067', 'CNC专用台虎钳', 'DCV-6-300', '上海辁鹰精密机械有限公司', NULL, NULL, '2022-03-16', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852699246594, NULL, NULL, 'GPB2022NL068', 'CNC专用台虎钳', 'DCV-6-300', '上海辁鹰精密机械有限公司', NULL, NULL, '2022-03-16', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852728606722, NULL, NULL, 'GOA2022NL059', '工业条形码打印机', '新北洋BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-06-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海迈川信息技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852757966849, NULL, NULL, 'GPB2022NL069', 'PSS超声波模具', 'PSS滤光片 35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852795715586, NULL, NULL, 'GPB2022NL070', 'PSE超声波模具', 'PSE滤光片 35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.4.24转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852829270018, NULL, NULL, 'GPB2022NL071', 'PSE超声波模具', 'PSE盖板 20K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.4.24转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852858630145, NULL, NULL, 'GPB2022NL072', 'PSR超声波模具', 'PSR盖板 20K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.4.1转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852883795970, NULL, NULL, 'GPB2022NL073', 'PSR超声波模具', 'PSR滤光片35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.4.1转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852913156097, NULL, NULL, 'GPG2022NL061', '化学品放置柜', '460*620*1080', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852946710530, NULL, NULL, 'GPG2022NL062', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852971876353, NULL, NULL, 'GPG2022NL063', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852997042178, NULL, NULL, 'GPG2022NL064', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853022208002, NULL, NULL, 'GPC2022NL264', '诺力手动液压车(3吨)', 'AC3*540*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-06-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝诺力旗舰店', NULL, NULL, NULL, NULL, '材料仓库使用,黄色3吨一体泵'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853043179522, NULL, NULL, 'GPC2022NL265', '诺力手动液压车(3吨)', 'AC3*540*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-06-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝诺力旗舰店', NULL, NULL, NULL, NULL, '材料仓库使用,黄色3吨一体泵'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853064151042, NULL, NULL, 'NPG2022H041', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853089316865, NULL, NULL, 'NPG2022H042', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853114482689, NULL, NULL, 'NPG2022H043', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853139648513, NULL, NULL, 'NPG2022H044', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853160620033, NULL, NULL, 'NPG2022H045', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853189980162, NULL, NULL, 'NPG2022H046', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853223534593, NULL, NULL, 'NPG2022H047', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853248700417, NULL, NULL, 'NPG2022H048', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853303226370, NULL, NULL, 'NPG2022H049', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853336780801, NULL, NULL, 'NPG2022H050', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853366140929, NULL, NULL, 'NPG2022H051', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853391306753, NULL, NULL, 'NPG2022H052', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853416472577, NULL, NULL, 'NPG2022H053', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853445832705, NULL, NULL, 'NPG2022H054', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853521330178, NULL, NULL, 'NPG2022H055', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853559078914, NULL, NULL, 'NPG2022H056', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853584244737, NULL, NULL, 'NPG2022H057', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853609410561, NULL, NULL, 'NPG2022H058', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853630382081, NULL, NULL, 'NPG2022H059', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853651353602, NULL, NULL, 'NPG2022H060', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853676519426, NULL, NULL, 'NPG2022H061', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853701685249, NULL, NULL, 'NPG2022H062', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853722656769, NULL, NULL, 'NPG2022H063', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853747822593, NULL, NULL, 'NPG2022H064', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853768794114, NULL, NULL, 'NPG2022H065', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853789765634, NULL, NULL, 'NPG2022H066', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853810737154, NULL, NULL, 'NPG2022H067', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853949149185, NULL, NULL, 'NPG2022H068', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853982703618, NULL, NULL, 'NPG2022H069', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854007869441, NULL, NULL, 'NPG2022H070', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854033035265, NULL, NULL, 'GPC2022NL266', '雅马哈贴片机', 'YAMAHA YSM10', '日本YAMAHA', NULL, NULL, '2022-04-12', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '传感车间SMT线使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854054006785, NULL, NULL, 'GPC2022NL267', '尚来包装机', 'DT-A12-4TR-SF', '无锡市尚来科技有限公司', NULL, NULL, '2022-02-22', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854074978306, NULL, NULL, 'NPG2022H071', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854100144130, NULL, NULL, 'NPG2022H072', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854125309953, NULL, NULL, 'NPG2022H073', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854150475777, NULL, NULL, 'NPG2022H074', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854175641602, NULL, NULL, 'NPG2022H075', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854196613122, NULL, NULL, 'NPG2022H076', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854217584642, NULL, NULL, 'NPG2022H077', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854238556162, NULL, NULL, 'NPG2022H078', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854272110594, NULL, NULL, 'NPG2022H079', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854293082113, NULL, NULL, 'NPG2022H080', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854314053633, NULL, NULL, 'NPG2022H081', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854330830850, NULL, NULL, 'NPG2022H082', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854347608065, NULL, NULL, 'GPG2022NH039', '隔离网', '1.5*3m', '安平县海诚丝网制品有限公司', NULL, NULL, '2022-06-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '安平县海诚丝网制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854376968193, NULL, NULL, 'GPD2022NL276', '重型货架', '2000*600*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2022-05-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854406328321, NULL, NULL, 'GPB2022NL074', '台虎钳', '型号:HVL-160', '淘宝购买', NULL, NULL, '2022-07-01', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '用于数控CNC'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854431494146, NULL, NULL, 'GOE2022NA002', '立式冰柜', '海尔LC-168H', '海尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '京东购买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854460854274, NULL, NULL, 'NPG2022H083', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854486020097, NULL, NULL, 'NPG2022H084', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854519574529, NULL, NULL, 'NPG2022H085', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854540546050, NULL, NULL, 'NPG2022H086', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854565711873, NULL, NULL, 'GPC2022NA001', '奥津手动液压车', 'NPL25-510 额定载荷 2500mm 货叉尺寸 520*1080mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854586683393, NULL, NULL, 'GPC2022NA002', '奥津手动液压车', 'NPL25-510 额定载荷 2500mm 货叉尺寸 520*1080mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854611849218, NULL, NULL, 'GPC2022NA003', '奥津手动液压车', 'NP30-512 额定载荷 3000mm 货叉尺寸 520*1220mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854632820738, NULL, NULL, 'GPC2022NA004', '奥津手动液压车', 'NP30-512 额定载荷 3000mm 货叉尺寸 520*1220mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854653792257, NULL, NULL, 'GPC2022NA006', '高速静音剥打端子机', '287# 配兰宝1-26-287端子', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854687346689, NULL, NULL, 'GPC2022NA015', '高速静音剥打端子机', '286# 配兰宝1-26-286端子', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854708318209, NULL, NULL, 'GPA2022NA001', '回流焊炉温测试仪', 'KIC2000', '未知', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854729289730, NULL, NULL, 'GPC2022NA007', '吸尘器 (分板机用 )', 'DL-2200-80-AC', '上海全风实业有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海全风实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854754455554, NULL, NULL, 'GPC2022NA008', '全自动锡膏印刷机', 'GKG G9+', '东莞凯格精密电子设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '东莞凯格精密电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854909644802, NULL, NULL, 'GPC2022NA010', '锡膏搅拌机', 'SPS-10 MALCOM日本', '日本MALCOM', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海衡鹏实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854947393537, NULL, NULL, 'GOB2022NA004', '标签打印机', '新北洋BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854972559361, NULL, NULL, 'GPC2022NA011', 'YAMAHA贴片机', 'YAMAHA YSM20R', '日本YAMAHA', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855001919489, NULL, NULL, 'GPC2022NA012', 'YAMAHA贴片机', 'YAMAHA YSM10', '日本YAMAHA', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855022891009, NULL, NULL, 'GPC2022NA016', 'OK/NG自动收板机', '康贝尔 CWUD-880N 双轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855048056833, NULL, NULL, 'GPC2022NA017', '全自动上板', '康贝尔 SCLD-880A 单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855073222658, NULL, NULL, 'GPC2022NA013', '接驳台', '康贝尔0.6米工作检查站(双轨一段式) CDWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855094194177, NULL, NULL, 'GPA2022NA003', '静电手环测试仪', 'TR7131', '苏州京度电气有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855115165698, NULL, NULL, 'GPA2022NA004', '静电手环测试仪', 'TR7131', '苏州京度电气有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855169691649, NULL, NULL, 'NPG2022H89', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855190663170, NULL, NULL, 'NPG2022H90', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855215828994, NULL, NULL, 'NPG2022H91', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855240994818, NULL, NULL, 'NPG2022H92', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855261966337, NULL, NULL, 'NPG2022H93', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855282937857, NULL, NULL, 'NPG2022H94', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855299715073, NULL, NULL, 'NPG2022H95', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855320686594, NULL, NULL, 'NPG2022H96', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855345852418, NULL, NULL, 'NPG2022H97', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855371018241, NULL, NULL, 'NPG2022H98', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855391989761, NULL, NULL, 'NPG2022H99', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855408766978, NULL, NULL, 'NPG2022H100', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855433932802, NULL, NULL, 'NPG2022H101', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855446515713, NULL, NULL, 'NPG2022H102', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855467487234, NULL, NULL, 'NPG2022H103', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855488458754, NULL, NULL, 'NPG2022H104', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855509430274, NULL, NULL, 'NPG2022H105', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855530401794, NULL, NULL, 'NPG2022H106', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855555567617, NULL, NULL, 'NPG2022H107', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855589122049, NULL, NULL, 'NPG2022H108', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855605899265, NULL, NULL, 'NPG2022H109', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855626870785, NULL, NULL, 'NPG2022H110', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855647842306, NULL, NULL, 'NPG2022H111', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855668813826, NULL, NULL, 'NPG2022H112', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855685591042, NULL, NULL, 'NPG2022H113', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855710756865, NULL, NULL, 'NPG2022H114', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855727534081, NULL, NULL, 'NPG2022H115', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855748505602, NULL, NULL, 'NPG2022H116', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855769477122, NULL, NULL, 'NPG2022H117', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855786254338, NULL, NULL, 'NPG2022H118', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855811420161, NULL, NULL, 'GPC2022NL268', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855828197377, NULL, NULL, 'GPC2022NL269', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855849168897, NULL, NULL, 'GPC2022NL270', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855870140417, NULL, NULL, 'GPC2022NA023', '全自动上板机L', '康贝尔 SCLD-880A 单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855891111938, NULL, NULL, 'GPC2022NA019', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855912083457, NULL, NULL, 'GPC2022NA020', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855933054977, NULL, NULL, 'GPC2022NA021', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855949832193, NULL, NULL, 'GPC2022NA022', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855974998017, NULL, NULL, 'GPA2022NA005', '明锐SPI', '深圳明锐 VSP3000 单轨3D在线', '深圳明锐理想科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳明锐理想科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855995969538, NULL, NULL, 'GPC2022NA018', '接驳台', '康贝尔1米工作检查站含冷却风扇(双轨一段式)', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856016941058, NULL, NULL, 'GPG2022NL067', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856033718274, NULL, NULL, 'GPG2022NL068', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856054689794, NULL, NULL, 'GPG2022NL069', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '林新文联系,3楼放超声波'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856075661314, NULL, NULL, 'GPG2022NL070', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856096632833, NULL, NULL, 'GPG2022NL071', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856113410049, NULL, NULL, 'GPG2022NL072', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856138575874, NULL, NULL, 'GPC2022NA024', '半自动封口机 传送带', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856159547393, NULL, NULL, 'GPD2022NA001', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856180518913, NULL, NULL, 'GPD2022NA002', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856205684738, NULL, NULL, 'GPD2022NA003', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856226656258, NULL, NULL, 'GPD2022NA004', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856247627778, NULL, NULL, 'GPD2022NA005', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856272793601, NULL, NULL, 'GPD2022NA006', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856289570817, NULL, NULL, 'GPD2022NA007', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856310542338, NULL, NULL, 'GPD2022NA008', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856339902466, NULL, NULL, 'NPG2022NA121', '普瑞逊电子秤', '3kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856365068290, NULL, NULL, 'NPG2022NA122', '普瑞逊电子秤', '30kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856394428418, NULL, NULL, 'NPG2022NA123', '普瑞逊电子秤', '150kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856415399938, NULL, NULL, 'GPC2022NA025', '点料机(SMD零件计数器)', 'DPS-682', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856440565762, NULL, NULL, 'GPC2022NA026', '点料机(SMD零件计数器)', 'DPS-682', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856469925889, NULL, NULL, 'GPA2022NA006', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856499286018, NULL, NULL, 'GPA2022NA007', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856520257538, NULL, NULL, 'GPA2022NA008', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856545423362, NULL, NULL, 'GPA2022NA009', '人工检查站', '1米双轨工作检查站带2个NG和2个OK按钮', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856566394881, NULL, NULL, 'GPD2022NL277', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856595755009, NULL, NULL, 'GPD2022NL278', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856625115138, NULL, NULL, 'GPD2022NL279', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856646086658, NULL, NULL, 'GPD2022NL280', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856671252482, NULL, NULL, 'GPD2022NL281', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856696418305, NULL, NULL, 'GPD2022NL282', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856721584130, NULL, NULL, 'GPD2022NL283', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856746749954, NULL, NULL, 'GPD2022NL284', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856776110081, NULL, NULL, 'GPD2022NL285', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856797081602, NULL, NULL, 'GPD2022NL286', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856826441730, NULL, NULL, 'GOA2022NL383', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856855801858, NULL, NULL, 'GOA2022NL384', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856880967682, NULL, NULL, 'GOA2022NL385', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856906133505, NULL, NULL, 'GOA2022NL386', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856931299330, NULL, NULL, 'GOA2022NL387', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856956465153, NULL, NULL, 'GOA2022NL388', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856977436673, NULL, NULL, 'GOA2022NL389', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857002602498, NULL, NULL, 'GOA2022NL390', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857027768322, NULL, NULL, 'GOA2022NL391', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857052934146, NULL, NULL, 'GOA2022NL392', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857082294274, NULL, NULL, 'GOA2022NL393', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857115848705, NULL, NULL, 'GOA2022NL394', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857170374658, NULL, NULL, 'GOA2022NL395', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857208123394, NULL, NULL, 'GOA2022NL396', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857254260738, NULL, NULL, 'GOA2022NL397', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857287815170, NULL, NULL, 'GOA2022NL398', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857317175297, NULL, NULL, 'GOA2022NL399', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857342341121, NULL, NULL, 'GOA2022NL400', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857375895554, NULL, NULL, 'GOA2022NL401', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857405255682, NULL, NULL, 'GOA2022NL402', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857438810113, NULL, NULL, 'GOA2022NL403', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857463975938, NULL, NULL, 'GPC2022NA029', '移栽机', 'CMV-600 (510*460mm) 5.5米', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857505918978, NULL, NULL, 'GPC2022NA031', '标签剥离机', 'BSC-110', '广州速登信息科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857543667714, NULL, NULL, 'GPC2022NA032', '标签剥离机', 'BSC-110', '广州速登信息科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857577222146, NULL, NULL, 'GPA2022NA010', '电子显微镜', '三锵双目20/40倍', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857602387969, NULL, NULL, 'GPC2022NA033', '高精密手动点胶机', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857631748098, NULL, NULL, 'GPC2022NA034', '高精密手动点胶机', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857661108225, NULL, NULL, 'GPC2022NL271', '电脑剥线机', 'BZW-882DH', '江苏博之旺自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857694662657, NULL, NULL, 'GPB2022NL075', '超声波模具', 'PTL 滤光片 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857740800002, NULL, NULL, 'GPB2022NL076', '超声波模具', 'PTB 滤光片 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857782743041, NULL, NULL, 'GPB2022NL077', '超声波模具', 'PTB 灯罩 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857816297473, NULL, NULL, 'GPB2022NL078', '超声波模具', 'TWF 盖板 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857849851905, NULL, NULL, 'GPC2022NL272', '双头扭线浸锡剥线机', 'GL-01A全自动', '昆山冠鑫钜自动化设备有限公司', NULL, NULL, '2022-06-08', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山冠鑫钜自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857883406338, NULL, NULL, 'GPC2022NL273', '全自动印刷机', 'GKG GSE印刷机', '东莞凯格精密电子设备有限公司', NULL, NULL, '2022-07-25', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞凯格精密电子设备有限公司', NULL, NULL, NULL, NULL, '传感车间SMT线使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857979875329, NULL, NULL, 'GPC2022NL275', '焊接机器人', 'QUICK ET9384E-1.0出锡', '快克智能装备股份有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858013429762, NULL, NULL, 'GPC2022NL276', '焊接机器人', 'QUICK ET9384E-1.0出锡', '快克智能装备股份有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858046984194, NULL, NULL, 'GPD2022NL287', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858097315842, NULL, NULL, 'GPD2022NL288', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858126675969, NULL, NULL, 'GPD2022NL289', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858156036098, NULL, NULL, 'GPD2022NL290', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858185396226, NULL, NULL, 'GPD2022NL291', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858210562049, NULL, NULL, 'GPD2022NL292', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858239922177, NULL, NULL, 'GPD2022NL293', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858269282306, NULL, NULL, 'GPD2022NL294', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858290253825, NULL, NULL, 'GPD2022NL295', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858319613954, NULL, NULL, 'GPD2022NL296', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858344779777, NULL, NULL, 'GPD2022NL297', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858369945601, NULL, NULL, 'GPD2022NL298', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858395111425, NULL, NULL, 'GPD2022NL299', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858424471553, NULL, NULL, 'GPD2022NL300', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858445443073, NULL, NULL, 'GPD2022NL301', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858470608897, NULL, NULL, 'GPD2022NL302', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858495774721, NULL, NULL, 'GPD2022NL303', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858525134849, NULL, NULL, 'GPD2022NL304', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858550300673, NULL, NULL, 'GPD2022NL305', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858575466497, NULL, NULL, 'GPD2022NL307', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858609020930, NULL, NULL, 'GPD2022NL308', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858629992450, NULL, NULL, 'GPD2022NL309', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858655158274, NULL, NULL, 'GPD2022NL310', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858680324097, NULL, NULL, 'GPD2022NL311', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858705489921, NULL, NULL, 'GPD2022NL312', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858743238658, NULL, NULL, 'GPD2022NL313', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858764210177, NULL, NULL, 'GPD2022NL314', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858785181697, NULL, NULL, 'GPD2022NL315', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858814541826, NULL, NULL, 'GPD2022NL316', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858848096257, NULL, NULL, 'GPD2022NL317', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858885844993, NULL, NULL, 'GPD2022NL318', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858923593729, NULL, NULL, 'GPD2022NL319', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858957148161, NULL, NULL, 'GPD2022NL320', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858986508290, NULL, NULL, 'GPD2022NL321', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859007479809, NULL, NULL, 'GPD2022NL322', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859032645633, NULL, NULL, 'GPD2022NL323', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859074588674, NULL, NULL, 'GPD2022NL324', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859099754497, NULL, NULL, 'GPD2022NL325', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859124920322, NULL, NULL, 'GPD2022NL326', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859158474754, NULL, NULL, 'GPD2022NL327', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859183640578, NULL, NULL, 'GPD2022NL328', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859208806402, NULL, NULL, 'GPD2022NL329', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859238166529, NULL, NULL, 'GPD2022NL330', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859267526658, NULL, NULL, 'GPG2022NL073', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859301081089, NULL, NULL, 'GPG2022NL074', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859334635522, NULL, NULL, 'GPG2022NL075', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859368189954, NULL, NULL, 'GPG2022NL076', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859405938690, NULL, NULL, 'GPG2022NL077', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859431104514, NULL, NULL, 'GPG2022NL078', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859468853249, NULL, NULL, 'GPG2022NL079', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859489824769, NULL, NULL, 'GPG2022NL080', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859531767810, NULL, NULL, 'GPG2022NL081', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859561127938, NULL, NULL, 'GPG2022NL082', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859590488065, NULL, NULL, 'GPG2022NL083', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859624042498, NULL, NULL, 'GPG2022NL084', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859653402626, NULL, NULL, 'GPG2022NL085', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859686957058, NULL, NULL, 'GPG2022NL086', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859724705794, NULL, NULL, 'GPG2022NL087', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859754065921, NULL, NULL, 'GPG2022NL088', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859791814658, NULL, NULL, 'GPG2022NL089', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859829563393, NULL, NULL, 'GPG2022NL090', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859871506433, NULL, NULL, 'GPG2022NL091', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859905060866, NULL, NULL, 'GPG2022NL092', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859934420994, NULL, NULL, 'GPG2022NL093', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859963781121, NULL, NULL, 'GPG2022NL094', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859984752642, NULL, NULL, 'GPG2022NL095', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860035084290, NULL, NULL, 'GPG2022NL096', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860085415937, NULL, NULL, 'GPG2022NL097', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2023.11.15转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860118970369, NULL, NULL, 'GPG2022NL098', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860148330497, NULL, NULL, 'GPG2022NL099', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860186079233, NULL, NULL, 'GPG2022NL100', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860215439362, NULL, NULL, 'GPG2022NL101', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860240605186, NULL, NULL, 'GPG2022NL102', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860265771009, NULL, NULL, 'GPC2022NA035', '自动绕线扎线机', '400x450x580mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860290936833, NULL, NULL, 'GPC2022NA036', '自动绕线扎线机', '400x450x580mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860324491265, NULL, NULL, 'GPC2022NA037', 'CNC绕线机', '绕线机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860358045698, NULL, NULL, 'GPC2022NA038', 'CNC绕线机', '绕线机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860387405826, NULL, NULL, 'GPG2022NA001', '鼓风恒温干燥箱', 'DHG-9140A', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860416765953, NULL, NULL, 'GPG2022NA002', '鼓风恒温干燥箱', '鼓风恒温干燥箱(小号)9030', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860446126082, NULL, NULL, 'GPG2022NA003', '工业电子防潮柜', 'HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860492263426, NULL, NULL, 'GPG2022NA004', '工业电子防潮柜', 'HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860525817858, NULL, NULL, 'GPC2022NA039', '气泡机', '冲气泡(包装减震)', '上海吉雄文化用品有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海吉雄文化用品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860563566594, NULL, NULL, 'GPC2022NL279', '静电放电发生器', 'EMS61000-2A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2022-09-08', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860605509634, NULL, NULL, 'GPD2022NL332', '重型货架', '2000*600*2000(内 长1840)6层主架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-16', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860643258370, NULL, NULL, 'GPG2022NL104', '电动平板车(倒骑款)', '倒骑款尺寸:长1.7米宽1.2米', '大城县东阜重兴电动车厂', NULL, NULL, '2022-08-02', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '阿里巴巴', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860685201410, NULL, NULL, 'GPC2022NL281', '示波器', '鼎阳 SDS6034 H10 Pro', '鼎阳', NULL, NULL, '2022-08-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '欣禾电子(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860718755842, NULL, NULL, 'GPC2022NL282', '信号发生器', '泰克 AFG1062', '美国泰克', NULL, NULL, '2022-08-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '欣禾电子(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860748115970, NULL, NULL, 'GPD2022NL333', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860781670402, NULL, NULL, 'GPD2022NL334', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860815224834, NULL, NULL, 'GPD2022NL335', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860848779266, NULL, NULL, 'GPD2022NL336', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860878139393, NULL, NULL, 'GPD2022NL337', '兰宝操作台', '蓄莹铝业 配福马轮', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-03', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860915888130, NULL, NULL, 'GPD2022NL338', '超声波工作台', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-08-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860945248257, NULL, NULL, 'GPD2022NL339', '超声波工作台', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-08-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860974608385, NULL, NULL, 'GPB2022NL079', '超声波模具', 'PTE盖板', '昆山东和超声波设备有限公司', NULL, NULL, '2022-08-02', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861008162818, NULL, NULL, 'GPB2022NL080', '超声波模具', 'PU-30盖板', '昆山东和超声波设备有限公司', NULL, NULL, '2022-08-15', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861037522945, NULL, NULL, 'GPC2022NL284', '冷水机组', 'FAMA-20HP 水泵1.5KW', '嘉兴方迈制冷设备有限公司', NULL, NULL, '2022-08-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '嘉兴方迈制冷设备有限公司', NULL, NULL, NULL, NULL, '注塑间室外,2024.07.05转移到安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861071077377, NULL, NULL, 'GPC2022NL285', '高低温箱', 'M/THP-800L', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-09-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '封灌间使用,2023.02已转安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861104631809, NULL, NULL, 'GPC2022NL286', '万能铣床', 'XQ6230', '杭州铣床制造有限责任公司', NULL, NULL, '2022-08-22', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '杭州铣床制造有限责任公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861129797633, NULL, NULL, 'GPG2022NL105', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861154963458, NULL, NULL, 'GPG2022NL106', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861196906498, NULL, NULL, 'GPG2022NL107', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861238849538, NULL, NULL, 'GPG2022NL108', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861268209666, NULL, NULL, 'GPG2022NL109', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861305958401, NULL, NULL, 'GPG2022NL110', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861339512834, NULL, NULL, 'GPG2022NL111', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861373067265, NULL, NULL, 'NPA2022H018', '三丰数显卡尺', '0-150mm', '日本三丰', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海希幔金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861410816001, NULL, NULL, 'NPA2022H019', '三丰数显卡尺', '0-150mm', '日本三丰', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海希幔金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861440176130, NULL, NULL, 'GPA2022NL104', '显微镜', '【标准版】TD2KH(带11.6寸显示器)', '淘宝购买(三锵)', NULL, NULL, '2022-08-19', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861494702082, NULL, NULL, 'GPC2022NL283', '单工位柔性振动打标机', '自动打标机(众泰兴)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工使用,2023.02已转安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861561810946, NULL, NULL, 'GOB2022NA005', '二维码打印机', 'GP-1134T', '宁波科密电子有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861595365378, NULL, NULL, 'GPG2022NH050', '储胶槽', '长宽高:650*410*556mm', '安徽诚诚机械有限公司', NULL, NULL, '2022-07-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '安徽诚诚机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861624725505, NULL, NULL, 'GPC2022NA040', '双梁桥式双小车起重机', 'LHE5T+5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861654085634, NULL, NULL, 'GPC2022NA041', '电动单梁桥式起重机', '5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861683445761, NULL, NULL, 'GPC2022NA042', '电动单梁桥式起重机', '5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861712805889, NULL, NULL, 'GOE2022NL089', '美的热水器', '50升热水器', '美的', NULL, NULL, '2022-05-18', NULL, '金工间隔壁', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '智光代买', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861746360322, NULL, NULL, 'GPD2022NA009', '兰宝操作台', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861779914753, NULL, NULL, 'GPD2022NA010', '工作台', '放置绕线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861800886274, NULL, NULL, 'GPD2022NA011', '工作台', '放置绕线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861830246402, NULL, NULL, 'GPD2022NA012', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861855412226, NULL, NULL, 'GPD2022NA013', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861884772353, NULL, NULL, 'GPD2022NA014', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861922521090, NULL, NULL, 'GPC2022NA044', '锡膏印刷机', 'GKG G9+', '东莞市凯格精机股份有限公司', NULL, NULL, '2002-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市凯格精机股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861960269826, NULL, NULL, 'GPC2022NA045', '自动剥线机', '电脑剥线机 BZW-882DH 左向右', '江苏博之旺自动化设备有限公司', NULL, NULL, '2002-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861989629953, NULL, NULL, 'GPC2022NA046', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862073516033, NULL, NULL, 'GPC2022NA047', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862098681858, NULL, NULL, 'GPC2022NA048', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862119653378, NULL, NULL, 'GPC2022NA049', '自动封箱机', '101A (220V 交流大电机)', '正佳(浙江)智能设备有限公司', NULL, NULL, '2022-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862144819202, NULL, NULL, 'GPA2022NA011', '明锐自动锡膏检测仪SPI', 'SPI:VSP3000', '深圳明锐理想科技有限公司', NULL, NULL, '2022-08-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海昆韩电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862165790721, NULL, NULL, 'GPD2022NA015', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862186762241, NULL, NULL, 'GPD2022NA016', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862220316673, NULL, NULL, 'GPD2022NA017', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862249676802, NULL, NULL, 'GPD2022NA018', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862279036929, NULL, NULL, 'GPD2022NA019', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862308397057, NULL, NULL, 'GPD2022NA020', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862337757186, NULL, NULL, 'GPC2022NA050', '八温区回流焊', '劲拓JTR-1000D 双轨', '深圳市劲拓自动化设备股份有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '深圳市劲拓自动化设备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862375505921, NULL, NULL, 'GOA2022NA143', '平板电脑', '台电X16PC', '深圳市闪电之翼科技有限公司', NULL, NULL, '2022-07-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862400671746, NULL, NULL, 'GPG2022NA005', '铁皮收纳柜', '1240*40*1950 厚1.2mm 72抽', '/', NULL, NULL, '2022-08-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862425837569, NULL, NULL, 'GPC2022NA051', '分板机', 'AUO 3000 -UC', '和椿自动化设备有限公司', NULL, NULL, '2022-08-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '苏州昆创电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862455197698, NULL, NULL, 'GOA2022NA144', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862492946433, NULL, NULL, 'GOA2022NA145', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862526500866, NULL, NULL, 'GOA2022NA146', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862551666690, NULL, NULL, 'GOA2022NA147', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862581026817, NULL, NULL, 'GOA2022NA148', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862614581250, NULL, NULL, 'GOA2022NA149', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862652329986, NULL, NULL, 'GOA2022NA150', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862685884418, NULL, NULL, 'GOA2022NA151', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862715244546, NULL, NULL, 'GPD2022NA021', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862740410370, NULL, NULL, 'GPD2022NA022', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862769770498, NULL, NULL, 'GPD2022NA023', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862803324930, NULL, NULL, 'GPD2022NA024', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862824296450, NULL, NULL, 'GPD2022NA025', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862853656578, NULL, NULL, 'GPD2022NA026', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862887211009, NULL, NULL, 'GPD2022NA027', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862924959745, NULL, NULL, 'GPD2022NA028', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862962708481, NULL, NULL, 'GPD2022NA029', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862992068610, NULL, NULL, 'GPD2022NA030', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863029817346, NULL, NULL, 'GPD2022NA031', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863054983169, NULL, NULL, 'GPD2022NA032', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863075954690, NULL, NULL, 'GPD2022NA033', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863109509121, NULL, NULL, 'GPD2022NA034', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863143063553, NULL, NULL, 'GPD2022NA035', '工作台', '放置喷码机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863176617986, NULL, NULL, 'GPD2022NA036', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863214366721, NULL, NULL, 'GPD2022NA037', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863247921154, NULL, NULL, 'GPD2022NA038', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863285669890, NULL, NULL, 'GPC2022NA052', '深圳明锐AOI', '明锐 V5000D 双轨2D在线', '深圳明锐理想科技有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '深圳明锐理想科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863382138882, NULL, NULL, 'GPD2022NA039', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863407304705, NULL, NULL, 'GPD2022NA040', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863440859138, NULL, NULL, 'GPD2022NA041', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863470219265, NULL, NULL, 'GPD2022NA042', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863503773698, NULL, NULL, 'GPD2022NA043', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863533133826, NULL, NULL, 'GPD2022NA044', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863554105346, NULL, NULL, 'GPD2022NA045', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863583465474, NULL, NULL, 'GPD2022NA046', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863612825602, NULL, NULL, 'GPD2022NA047', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863642185729, NULL, NULL, 'GPD2022NA048', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863671545858, NULL, NULL, 'GPD2022NA049', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863696711681, NULL, NULL, 'GPD2022NA050', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863730266114, NULL, NULL, 'GPD2022NA051', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863755431938, NULL, NULL, 'GPD2022NA052', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863793180674, NULL, NULL, 'GPD2022NA053', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863826735105, NULL, NULL, 'GPD2022NA054', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863860289538, NULL, NULL, 'GPD2022NA055', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863898038274, NULL, NULL, 'GPD2022NA056', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863935787009, NULL, NULL, 'GPD2022NA057', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863969341441, NULL, NULL, 'GPD2022NA058', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864002895873, NULL, NULL, 'GPD2022NA059', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864032256002, NULL, NULL, 'GPD2022NA060', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864078393345, NULL, NULL, 'GPD2022NA061', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864116142082, NULL, NULL, 'GPD2022NA062', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864153890818, NULL, NULL, 'GPD2022NA063', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864200028162, NULL, NULL, 'GPD2022NA064', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864237776898, NULL, NULL, 'GPD2022NA065', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864271331329, NULL, NULL, 'GPD2022NA066', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864304885762, NULL, NULL, 'GPD2022NA067', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864334245889, NULL, NULL, 'GPD2022NA068', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864371994625, NULL, NULL, 'GPD2022NA069', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864405549057, NULL, NULL, 'GPD2022NA070', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864439103490, NULL, NULL, 'GPD2022NA071', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864464269313, NULL, NULL, 'GPD2022NA072', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864497823745, NULL, NULL, 'GPD2022NA073', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864522989569, NULL, NULL, 'GPD2022NA074', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864552349698, NULL, NULL, 'GPD2022NA075', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864585904130, NULL, NULL, 'GPD2022NA076', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864627847169, NULL, NULL, 'GPD2022NA077', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864653012993, NULL, NULL, 'GPD2022NA078', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864686567425, NULL, NULL, 'GPD2022NA079', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864720121858, NULL, NULL, 'GPD2022NA080', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864757870594, NULL, NULL, 'GPD2022NA081', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864791425025, NULL, NULL, 'GPD2022NA082', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864829173761, NULL, NULL, 'GPD2022NA083', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864879505409, NULL, NULL, 'GPD2022NA084', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864925642753, NULL, NULL, 'GPD2022NA085', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864975974401, NULL, NULL, 'GPD2022NA086', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865022111745, NULL, NULL, 'GPD2022NA087', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865055666177, NULL, NULL, 'GPD2022NA088', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865085026305, NULL, NULL, 'GPD2022NA089', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865114386434, NULL, NULL, 'GPD2022NA090', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865152135170, NULL, NULL, 'GPD2022NA091', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865181495298, NULL, NULL, 'GPD2022NA092', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865223438338, NULL, NULL, 'GPD2022NA093', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865252798466, NULL, NULL, 'GPD2022NA094', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865286352897, NULL, NULL, 'GPD2022NA095', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865336684545, NULL, NULL, 'GPD2022NA096', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865437347842, NULL, NULL, 'GPD2022NA097', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865462513665, NULL, NULL, 'GPD2022NA098', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865483485186, NULL, NULL, 'GPD2022NA099', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865517039618, NULL, NULL, 'GPD2022NA100', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865554788353, NULL, NULL, 'GPD2022NA101', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865584148481, NULL, NULL, 'GPD2022NA102', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865617702913, NULL, NULL, 'GPD2022NA103', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865655451649, NULL, NULL, 'GPD2022NA104', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865693200385, NULL, NULL, 'GPD2022NA105', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865726754817, NULL, NULL, 'GPD2022NA106', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865768697858, NULL, NULL, 'GPD2022NA107', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865810640897, NULL, NULL, 'GPD2022NA108', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865840001025, NULL, NULL, 'GPD2022NA109', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865890332674, NULL, NULL, 'GPD2022NA110', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865932275714, NULL, NULL, 'GPD2022NA111', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865965830145, NULL, NULL, 'GPD2022NA112', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865995190273, NULL, NULL, 'GPD2022NA113', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866024550401, NULL, NULL, 'GPD2022NA114', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866058104833, NULL, NULL, 'GPD2022NA115', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866091659266, NULL, NULL, 'GPD2022NA116', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866121019394, NULL, NULL, 'GPD2022NA117', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866158768130, NULL, NULL, 'GPD2022NA118', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866192322562, NULL, NULL, 'GPD2022NA119', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866217488385, NULL, NULL, 'GPD2022NA120', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866251042817, NULL, NULL, 'GPD2022NA121', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866280402945, NULL, NULL, 'GPD2022NA122', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866309763073, NULL, NULL, 'GPD2022NA123', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866334928898, NULL, NULL, 'GPD2022NA124', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866368483329, NULL, NULL, 'GPD2022NA125', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866439786498, NULL, NULL, 'GPD2022NA126', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866481729537, NULL, NULL, 'GPD2022NA127', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866519478274, NULL, NULL, 'GPD2022NA128', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866557227009, NULL, NULL, 'GPD2022NA129', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866586587138, NULL, NULL, 'GPD2022NA130', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866620141569, NULL, NULL, 'GPD2022NA131', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866649501698, NULL, NULL, 'GPD2022NA132', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866687250433, NULL, NULL, 'GPD2022NA133', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866724999170, NULL, NULL, 'GPD2022NA134', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866762747905, NULL, NULL, 'GPD2022NA135', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866796302337, NULL, NULL, 'GPD2022NA136', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866825662465, NULL, NULL, 'GPD2022NA137', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866859216898, NULL, NULL, 'GPD2022NA138', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866896965633, NULL, NULL, 'GPD2022NA139', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866930520065, NULL, NULL, 'GPD2022NA140', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866959880194, NULL, NULL, 'GPD2022NA141', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866997628929, NULL, NULL, 'GPD2022NA142', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867031183362, NULL, NULL, 'GPD2022NA143', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867068932098, NULL, NULL, 'GPD2022NA144', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867102486530, NULL, NULL, 'GPD2022NA145', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867140235266, NULL, NULL, 'GPD2022NA146', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867169595394, NULL, NULL, 'GPD2022NA147', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867211538434, NULL, NULL, 'GPD2022NA148', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867249287169, NULL, NULL, 'GPD2022NA149', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867274452993, NULL, NULL, 'GPD2022NA150', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867308007425, NULL, NULL, 'GPD2022NA151', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867341561857, NULL, NULL, 'GPD2022NA152', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867379310593, NULL, NULL, 'GPD2022NA153', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867417059330, NULL, NULL, 'GPD2022NA154', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867450613761, NULL, NULL, 'GPD2022NA155', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867488362497, NULL, NULL, 'GPD2022NA156', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867534499841, NULL, NULL, 'GPD2022NA157', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867576442881, NULL, NULL, 'GPD2022NA158', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867614191618, NULL, NULL, 'GPC2022NA053', '钢网清洗机', 'SME-750气动钢网清洗机', '东莞市神华机电设备有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市神华机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867651940353, NULL, NULL, 'GPG2022NA007', '恒温车间', '恒温车间系统', '上海永钧机电设备有限公司', NULL, NULL, '2022-01-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海永钧机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867689689089, NULL, NULL, 'GPG2022NA008', '恒温车间', '恒温车间系统', '上海永钧机电设备有限公司', NULL, NULL, '2022-01-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海永钧机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867727437825, NULL, NULL, 'GPG2022NH051', '吹扫平台', '尺寸:2,1*1.8*2(米)', '安徽诚诚机械有限公司', NULL, NULL, '2022-07-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '安徽诚诚机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867756797954, NULL, NULL, 'GOB2022NL045', '号码管打印机', 'C-210E', '佳能丽标', NULL, NULL, '2022-08-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '安徽德易智莱科技有限公司', NULL, NULL, NULL, NULL, '上海传感器车间用,2024.07.16转移安徽'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867794546689, NULL, NULL, 'GPG2022NA009', '智能货柜', '垂直升降货柜', '上海运斯自动化技术有限公司', NULL, NULL, '2022-01-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海运斯自动化技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867832295425, NULL, NULL, 'GPG2022NA010', '智能货柜', '垂直升降货柜', '上海运斯自动化技术有限公司', NULL, NULL, '2022-01-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海运斯自动化技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867941347330, NULL, NULL, 'GPG2022NH052', '不锈钢自吸泵', '25WBZ3-10-0.37', '台州凯霸机电有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867979096065, NULL, NULL, 'GPG2022NH053', '气动隔膜泵', 'QBY5-25AF塑料配F4膜片', '上海沄泉泵业制造有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海沄泉泵业制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868012650497, NULL, NULL, 'GPG2022NH054', '气动隔膜泵', 'QBY5-25AF塑料配F4膜片', '上海沄泉泵业制造有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海沄泉泵业制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868054593538, NULL, NULL, 'GPC2022NL287', '振动设备', '300Kgf精密振动试验台', '苏州苏试试验集团股份有限公司', NULL, NULL, '2022-08-09', NULL, 'DQM部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州苏试试验集团股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868083953666, NULL, NULL, 'GPC2022NL288', '普源两通道示波器', '普源DS1102Z-E', '苏州普源精电', NULL, NULL, '2022-10-08', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868117508097, NULL, NULL, 'GPC2022NL289', '普源两通道示波器', '普源DS1102Z-E', '苏州普源精电', NULL, NULL, '2022-10-08', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868151062529, NULL, NULL, 'GPC2022NA054', '扫码枪', '1900GHD-2USB', '淘宝', NULL, NULL, '2022-10-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '北京优力联旭科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868184616961, NULL, NULL, 'GOB2022NL046', '新北洋条码打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-10-07', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市英思腾信息科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868222365698, NULL, NULL, 'GPB2022NL081', '超声波模具', 'PU-30S 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-10-08', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868260114433, NULL, NULL, 'GPD2022NA159', '分板治具架', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-10-04', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868297863170, NULL, NULL, 'GPA2022NA012', '钢网检测台', '老款焊接带玻璃', '深圳市鑫鸿基设备有限公司', NULL, NULL, '2022-10-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市鑫鸿基设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868331417601, NULL, NULL, 'GPD2022NA160', '不锈钢料盘挂料架', '120*50*160带底盘', '/', NULL, NULL, '2022-09-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868381749249, NULL, NULL, 'GPD2022NA161', '不锈钢料盘挂料架', '120*50*160带底盘', '/', NULL, NULL, '2022-09-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868423692290, NULL, NULL, 'GPC2022NA055', '502点胶机', 'TP-60', '/', NULL, NULL, '2022-09-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868465635330, NULL, NULL, 'GPA2022NA013', '艾德堡HPH推拉力计', '机台+hp1000拉力机+治具', '东莞市永淇电子设备有限公司', NULL, NULL, '2022-08-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市永淇电子设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868511772674, NULL, NULL, 'GPC2022NA056', '树脂加料前搅拌机', '搅拌机', '广州市天河区黄村方侜仪器商行', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '广州市天河区黄村方侜仪器商行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868541132801, NULL, NULL, 'GPC2022NA057', '环氧树脂灌注机', '全自动双液灌胶机SEC-3030B', '苏州世椿新能源技术有限公司', NULL, NULL, '2022-08-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州世椿新能源技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868574687234, NULL, NULL, 'GPD2022NA162', '康贝尔1.0米工作检查站(单轨一段式) CWT-100A', '(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868608241665, NULL, NULL, 'GPC2022NA058', 'YAMAHA贴片机', 'YAMAHA YSM10 时速46000点', '日本YAMAHA', NULL, NULL, '2022-07-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868633407489, NULL, NULL, 'GPC2022NA059', '高低温箱(180L)', '67609149 PRO C/180/40/3', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-08-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868658573313, NULL, NULL, 'GPC2022NA060', '高低温箱(600L)', '67611149 PRO C/600/40/3', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-08-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868692127746, NULL, NULL, 'GPG2022NL113', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868729876482, NULL, NULL, 'GPG2022NL114', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868759236609, NULL, NULL, 'GPG2022NL115', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868788596737, NULL, NULL, 'GPG2022NL116', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868830539777, NULL, NULL, 'GPG2022NL117', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868859899905, NULL, NULL, 'GPG2022NL118', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868885065729, NULL, NULL, 'GPG2022NL119', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868918620161, NULL, NULL, 'GPG2022NL120', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868956368897, NULL, NULL, 'GPG2022NL121', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868989923330, NULL, NULL, 'GPC2022NL291', '全自动封口机', 'FR-600A', '浙江鼎业机械设备有限公司', NULL, NULL, '2022-10-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869023477762, NULL, NULL, 'GPD2022NL341', '不锈钢料盘挂料架', '120*50*160带底盘', '深圳市伟新仓储设备有限公司', NULL, NULL, '2022-10-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, 'SMT使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869057032193, NULL, NULL, 'GPD2022NH046', '货架', '6090*1600*4000*4F', '广东三森货架有限公司', NULL, NULL, '2022-06-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '广东三森货架有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869090586626, NULL, NULL, 'GPC2022NA064', '自动剥线机', '电脑剥外皮芯线机 BZW-882DH50-WX定制全伺服型', '江苏博之旺自动化设备有限公司', NULL, NULL, '2022-08-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869128335362, NULL, NULL, 'GPD2022NA163', '钢网架', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-10-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869166084098, NULL, NULL, 'GPC2022NA065', '日立喷码机', 'UX-H140S', '日本HITACHI(日立)', NULL, NULL, '2022-07-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '辉泉机电设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869203832834, NULL, NULL, 'GPC2022NA066', '安诗曼除湿机', '156L', '深圳市安诗曼科技有限公司', NULL, NULL, '2022-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市安诗曼科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869249970177, NULL, NULL, 'GPC2022NA067', '自动热缩管裁切机', 'HZX-100D', '深圳市华之鑫自动化设备有限公司', NULL, NULL, '2022-10-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市华之鑫自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869287718914, NULL, NULL, 'GPC2022NA068', '激光刻阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-10-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869329661954, NULL, NULL, 'GPC2022NA069', '视觉飞行激光打标机', '紫外激光机', '苏州楚天激光有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869375799297, NULL, NULL, 'GPC2022NA070', '高精密超静音压接机', 'YT-2T', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869417742337, NULL, NULL, 'GPD2022NA164', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869451296769, NULL, NULL, 'GPD2022NA165', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869484851201, NULL, NULL, 'GPD2022NA166', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869514211330, NULL, NULL, 'GPD2022NA167', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869547765761, NULL, NULL, 'GPD2022NA168', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869585514498, NULL, NULL, 'GPD2022NA169', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869614874625, NULL, NULL, 'GPD2022NA170', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869652623362, NULL, NULL, 'GPD2022NA171', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869686177793, NULL, NULL, 'GPD2022NA172', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869723926530, NULL, NULL, 'GPD2022NA173', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869753286657, NULL, NULL, 'GPD2022NA174', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869782646786, NULL, NULL, 'GPD2022NA175', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869816201217, NULL, NULL, 'GPD2022NA176', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869853949953, NULL, NULL, 'GPD2022NA177', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869887504385, NULL, NULL, 'GPD2022NA178', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869925253122, NULL, NULL, 'GPD2022NA179', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869958807553, NULL, NULL, 'GPD2022NA180', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870000750593, NULL, NULL, 'GPD2022NA181', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870034305025, NULL, NULL, 'GPD2022NA182', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870080442370, NULL, NULL, 'GPD2022NA183', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870122385410, NULL, NULL, 'GPD2022NA184', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870168522753, NULL, NULL, 'GPD2022NA185', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870210465794, NULL, NULL, 'GPD2022NA186', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870248214530, NULL, NULL, 'GPD2022NA187', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870285963265, NULL, NULL, 'GPD2022NA188', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870323712001, NULL, NULL, 'GPD2022NA189', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870357266433, NULL, NULL, 'GPD2022NA190', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870395015169, NULL, NULL, 'GPD2022NA191', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870428569602, NULL, NULL, 'GPD2022NA192', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870462124034, NULL, NULL, 'GPD2022NA193', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870495678465, NULL, NULL, 'GPD2022NA194', '中型货架', '长*宽*高=1800*600*2000 5层板 1拖4', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870537621506, NULL, NULL, 'GPD2022NA195', '中型货架', '长*宽*高=1800*600*2000 5层板 1拖5', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870571175938, NULL, NULL, 'GPD2022NA196', '中型货架', '长*宽*高=1800*600*2000 5层板 一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870617313281, NULL, NULL, 'GPD2022NA197', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870650867714, NULL, NULL, 'GPD2022NA198', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870697005058, NULL, NULL, 'GPD2022NA199', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870730559490, NULL, NULL, 'GPD2022NA200', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870759919617, NULL, NULL, 'GPD2022NA201', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870793474049, NULL, NULL, 'GPD2022NA202', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870827028482, NULL, NULL, 'GPD2022NA203', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870852194306, NULL, NULL, 'GPD2022NA204', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870877360129, NULL, NULL, 'GPD2022NA205', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870906720257, NULL, NULL, 'GPD2022NA206', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870936080385, NULL, NULL, 'GPD2022NA207', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870957051905, NULL, NULL, 'GPD2022NA208', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870986412034, NULL, NULL, 'GPD2022NA209', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871015772161, NULL, NULL, 'GPD2022NA210', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871049326593, NULL, NULL, 'GPD2022NA211', '轻型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼SMT线'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871078686722, NULL, NULL, 'GPD2022NA212', '轻型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼SMT线'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871112241153, NULL, NULL, 'GPD2022NA213', '中型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871149989889, NULL, NULL, 'GPD2022NA214', '中型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871191932930, NULL, NULL, 'GPD2022NA215', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871229681665, NULL, NULL, 'GPD2022NA216', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871271624706, NULL, NULL, 'GPD2022NA217', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871317762049, NULL, NULL, 'GPD2022NA218', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871359705089, NULL, NULL, 'GPG2022NA017', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871414231042, NULL, NULL, 'GPG2022NA018', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871464562690, NULL, NULL, 'GPG2022NA019', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871519088642, NULL, NULL, 'GPG2022NA020', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871577808897, NULL, NULL, 'GPG2022NA021', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871628140546, NULL, NULL, 'GPG2022NA022', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871691055105, NULL, NULL, 'GPA2022NA015', '耐压测试仪', 'WB2670A', '杭州旭尧万业科技有限公司', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '杭州旭尧万业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871758163969, NULL, NULL, 'GPA2022NA016', '耐压测试仪', 'WB2670A', '杭州旭尧万业科技有限公司', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '杭州旭尧万业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871858827265, NULL, NULL, 'GOA2022NA214', '平板电脑', '台电X16PC', '台电天猫店', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '深圳市闪电之翼科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871909158913, NULL, NULL, 'NPG2022NL126', '电子秤', '15kg-0.5g', '/', NULL, NULL, '2022-10-26', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '高新区赛格电子市场唯易准仪器仪表', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871955296257, NULL, NULL, 'GPD2022NA219', '中型货架', '1800*600*2000mm,一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872005627905, NULL, NULL, 'GPD2022NA220', '中型货架', '1800*600*2000mm,一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872047570945, NULL, NULL, 'GPC2022NH059', '打药机(喷雾器)', '电动,60L+20米水管+卷轴+水桶+推车', '青岛中科园彩网络科技公司(京东)', NULL, NULL, '2022-11-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '青岛中科园彩网络科技公司(京东)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872102096897, NULL, NULL, 'GPG2022NA024', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872156622849, NULL, NULL, 'GPG2022NA025', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872198565889, NULL, NULL, 'GPG2022NA026', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872244703233, NULL, NULL, 'GPG2022NA027', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872295034881, NULL, NULL, 'GPG2022NA028', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872341172225, NULL, NULL, 'GPG2022NA029', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872387309570, NULL, NULL, 'GPG2022NA030', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872437641217, NULL, NULL, 'GPG2022NA031', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872479584258, NULL, NULL, 'GPG2022NA032', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872521527298, NULL, NULL, 'GPG2022NA033', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872563470337, NULL, NULL, 'GPA2022NL112', '信号采集卡', 'NI USB 6289', 'NI', NULL, NULL, '2022-10-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '厦门顺祺伟业商贸有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872597024770, NULL, NULL, 'GPD2022NL342', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872643162114, NULL, NULL, 'GPD2022NL343', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872685105153, NULL, NULL, 'GPD2022NL344', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872722853889, NULL, NULL, 'GPD2022NL345', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872764796929, NULL, NULL, 'GPD2022NL346', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872810934273, NULL, NULL, 'GPD2022NL347', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872873848834, NULL, NULL, 'GPD2022NL348', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872932569090, NULL, NULL, 'GPD2022NL349', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872982900737, NULL, NULL, 'GPD2022NL350', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873024843778, NULL, NULL, 'GPD2022NL351', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873079369730, NULL, NULL, 'GPA2022NL107', '三通道电源', 'ITECH IT6322B', '深圳市劲浩伟业科技有限公司', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '深圳市劲浩伟业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873121312770, NULL, NULL, 'GPA2022NL108', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873167450113, NULL, NULL, 'GPA2022NL109', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873209393153, NULL, NULL, 'GPA2022NL110', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873259724802, NULL, NULL, 'GPA2022NL111', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873305862146, NULL, NULL, 'GPC2022NA071', '桌面式装袋机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2022-08-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873339416577, NULL, NULL, 'GPA2022NL113', '干扰测试电源', 'DF485 品牌Kikusui日本牌Kikusui日本', 'Kikusui日本', NULL, NULL, '2022-09-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心DQM戴燕燕使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873381359618, NULL, NULL, 'GPD2022NL352', '防静电实验工作台', '150*100*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873423302657, NULL, NULL, 'GPD2022NL353', '防静电实验工作台', '150*100*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873465245698, NULL, NULL, 'GPD2022NL354', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873511383042, NULL, NULL, 'GPD2022NL355', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873544937473, NULL, NULL, 'GPD2022NL356', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873586880513, NULL, NULL, 'GPD2022NL357', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873628823554, NULL, NULL, 'GPD2022NA221', '钢网架', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-07-15', NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873683349506, NULL, NULL, 'GPC2022NA072', '真空吸塑机(电子仓真空封装用)', 'DZQ-400 1D单室', '温州市瓯海南白象鑫驰包装机械', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '温州市瓯海南白象鑫驰包装机械', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873733681153, NULL, NULL, 'GOE2022NA003', '立式冰柜(存放针管胶)', '海尔LC-200H', '青岛海尔电器', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海鹰狮实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873784012801, NULL, NULL, 'GOD2022NA595', '沙发', '组合八:沙发8组+茶几2个+圆凳4个+抱枕8', '黎川县班班科技有限公司', NULL, NULL, '2022-11-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '黎川县班班科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873821761538, NULL, NULL, 'GOA2022NA221', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873880481794, NULL, NULL, 'GOA2022NA222', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873939202049, NULL, NULL, 'GOA2022NA223', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873989533697, NULL, NULL, 'GOA2022NA224', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874035671041, NULL, NULL, 'GOA2022NA225', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874086002690, NULL, NULL, 'GOA2022NA226', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874119557121, NULL, NULL, 'GOA2022NA227', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874165694466, NULL, NULL, 'GOA2022NA228', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874211831810, NULL, NULL, 'GPG2022NA034', '安徽空压机管道', '节能管道新厂房3#4#楼', '德阗压缩机械 (上海) 有限公司', NULL, NULL, '2022-02-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '安徽厂房C栋D栋'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874249580545, NULL, NULL, 'GPG2022NH081', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874299912193, NULL, NULL, 'GPG2022NH082', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874346049537, NULL, NULL, 'GPG2022NH083', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874383798274, NULL, NULL, 'GPG2022NH084', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874425741313, NULL, NULL, 'GPG2022NH085', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874467684353, NULL, NULL, 'GPG2022NH086', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874518016002, NULL, NULL, 'GPA2022NA017', '示波器 (普源)', 'DS1104Z PLUS', '上海广道电子有限公司', NULL, NULL, '2022-12-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874580930561, NULL, NULL, 'GPG2023NA001', '普瑞逊电子秤', '500g精度0.05小克量', '成都普瑞逊电子有限公司', NULL, NULL, '2022-12-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山衡是宝仪器设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874631262210, NULL, NULL, 'GPC2023NH001', '单梁起重机', 'LD5T-18.5', '合肥市神雕超重机械有限公司', NULL, NULL, '2022-11-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '合肥市神雕超重机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874685788161, NULL, NULL, 'GPC2023NH002', '单梁起重机', 'LD5T-18.5', '合肥市神雕超重机械有限公司', NULL, NULL, '2022-11-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '合肥市神雕超重机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874731925505, NULL, NULL, 'GPD2023NA001', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874786451457, NULL, NULL, 'GPD2023NA002', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874836783106, NULL, NULL, 'GPD2023NA003', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874882920449, NULL, NULL, 'NPG2023H006', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874933252098, NULL, NULL, 'NPG2023H007', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874979389442, NULL, NULL, 'NPG2023H008', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875046498306, NULL, NULL, 'NPG2023H009', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875105218562, NULL, NULL, 'NPG2023H010', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875151355905, NULL, NULL, 'GPC2023NL003', '阿特拉斯空气压缩机', 'GA75流量:3.1m3 /min0.8MPA', '无锡阿特拉斯有限公司', NULL, NULL, '2022-06-22', NULL, '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '2022年12月由安徽工厂转移过来'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875193298945, NULL, NULL, 'GPG2023NH002', '不锈钢自吸泵', '25WBZ3-10-0.37,380V', '台州凯霸机电有限公司', NULL, NULL, '2022-01-13', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875231047681, NULL, NULL, 'GPG2023NH003', '不锈钢自吸泵', '25WBZ3-10-0.37,380V', '台州凯霸机电有限公司', NULL, NULL, '2022-01-13', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875277185026, NULL, NULL, 'GOA2023NL016', '工控触摸一体机', '全封闭铝款(双核4G+64G)7寸', '上海视脉电子科技有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '淘宝', NULL, NULL, NULL, NULL, 'PST烫塑料柱治具用材料'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875331710978, NULL, NULL, 'GPD2023NA004', '中型货架1拖4', '长*宽*高=1800*600*2000,4层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875373654017, NULL, NULL, 'GPD2023NA005', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875423985666, NULL, NULL, 'GPD2023NA006', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875470123009, NULL, NULL, 'GPD2023NA007', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875528843266, NULL, NULL, 'GPD2023NA008', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875595952130, NULL, NULL, 'GPD2023NA009', '中型货架1拖5', '长*宽*高=1800*600*2000,4层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875658866689, NULL, NULL, 'GPD2023NA010', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875700809729, NULL, NULL, 'GPD2023NA011', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875746947074, NULL, NULL, 'GPD2023NA012', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875788890113, NULL, NULL, 'GPD2023NA013', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875830833153, NULL, NULL, 'GPD2023NA014', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875881164801, NULL, NULL, 'GPD2023NA015', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875918913538, NULL, NULL, 'GPD2023NA016', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875973439490, NULL, NULL, 'GPD2023NA017', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876015382530, NULL, NULL, 'GPD2023NA018', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876057325569, NULL, NULL, 'GPD2023NA019', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876095074305, NULL, NULL, 'GPD2023NA020', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876132823041, NULL, NULL, 'NPG2023H011', '电子秤', 'HT-600NC', '天猫', NULL, NULL, '2022-01-03', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876178960385, NULL, NULL, 'GPA2023NL001', '热像仪', 'K20', '海康', NULL, NULL, '2022-12-06', NULL, '研发', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市金厚德电子科技有限公司', NULL, NULL, NULL, NULL, '配热像仪镜头4201,研发陈伟购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876233486338, NULL, NULL, 'GPD2023NL021', '中型货架', '高2m*长2m*宽0.6m 5层', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-01-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876338343938, NULL, NULL, 'GPB2023NL001', '超声波模具', 'CE17 20K', '东和超音波机械设备有限公司', NULL, NULL, '2023-01-05', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, '新3楼新产品使用,晏阳威请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876376092673, NULL, NULL, 'GPC2023NH004', '手动液压车', '奥津 2.5吨520*1070(PU)', '上海奥津', NULL, NULL, '2023-02-03', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海奥津', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876430618625, NULL, NULL, 'GPC2023NH005', '手动液压车', '奥津 2.5吨520*1070(PU)', '上海奥津', NULL, NULL, '2023-02-03', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海奥津', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876476755970, NULL, NULL, 'GPC2023NA006', '烘料机', '干燥机25KG', '惠州市德穗机械有限公司', NULL, NULL, '2023-01-09', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '惠州市德穗机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876527087617, NULL, NULL, 'GPC2023NA007', '连续封口机', '不锈钢款 封口宽度10mm+双控表', '上海维马逊包装机械有限公司', NULL, NULL, '2022-11-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海维马逊包装机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876585807873, NULL, NULL, 'GPC2023NA008', '双液手动灌胶机', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2022-09-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876627750913, NULL, NULL, 'GPA2023NL002', '防水设备 密封检测仪', 'ip67防水测试 型号:F660-C016', '上海仁莫电子科技有限公司', NULL, NULL, '2022-11-02', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876678082562, NULL, NULL, 'GPC2023NH009', '气保焊机', '上海沪工NB-350E 标配', '上海沪工焊机(集团)有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876715831297, NULL, NULL, 'GPG2023NL006', '110加仑防爆柜', '1500*860*1650mm', '欧力朗家具旗舰店', NULL, NULL, '2022-03-13', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '欧力朗家具旗舰店', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876757774338, NULL, NULL, 'GPA2023NH003', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876795523073, NULL, NULL, 'GPA2023NH004', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876837466113, NULL, NULL, 'GPA2023NH005', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876866826242, NULL, NULL, 'GPA2023NH006', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876912963586, NULL, NULL, 'GPA2023NH007', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876959100929, NULL, NULL, 'GPG2023NA007', '电动液压升降平台车', '移动电动升降500KG1.5M', '无锡中仓搬运设备有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '无锡中仓搬运设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877013626881, NULL, NULL, 'GPD2023NA023', 'SMT贴片机料架', 'YSM20R用', '雅马哈', NULL, NULL, '2023-03-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877051375617, NULL, NULL, 'GPD2023NA024', 'SMT贴片机料架', 'YSM10用', '雅马哈', NULL, NULL, '2023-03-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877118484482, NULL, NULL, 'GPG2023NA008', 'smt料盘挂料车', '72挂120*50*160cm带底盘', '深圳市创新源货架有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市创新源货架有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877164621826, NULL, NULL, 'GPG2023NA009', 'smt料盘挂料车', '72挂120*50*160cm带底盘', '深圳市创新源货架有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市创新源货架有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877223342081, NULL, NULL, 'GPC2023NA011', '续式剥皮打端机', 'HN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-02-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877282062337, NULL, NULL, 'GPC2023NA012', '自动灌胶机', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2023-01-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877340782593, NULL, NULL, 'GPG2023NL010', '工业电子防潮柜', 'HSC1436BD白色', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-03-11', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877391114242, NULL, NULL, 'GPG2023NL011', '干燥箱', '睦尼9030', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-04-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877445640194, NULL, NULL, 'GPD2023NL025', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '2023.12.26资产转移到资材课,新楼成品库'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877491777538, NULL, NULL, 'GPD2023NL026', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877537914881, NULL, NULL, 'GPD2023NL027', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877584052226, NULL, NULL, 'GPD2023NL028', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '原产品组使用,2023.12.19转移到新楼一楼资材成品库'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877646966785, NULL, NULL, 'GOD2023NL180', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '原产品组使用,凳子,2023.12.19转移到新楼一楼资材成品库'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877764407297, NULL, NULL, 'GOD2023NL181', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877810544642, NULL, NULL, 'GOD2023NL182', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877844099074, NULL, NULL, 'GOD2023NL183', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877886042114, NULL, NULL, 'GOD2023NL184', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877927985154, NULL, NULL, 'GOD2023NL185', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877974122498, NULL, NULL, 'GOD2023NL186', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878020259842, NULL, NULL, 'GOD2023NL187', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878058008578, NULL, NULL, 'GPC2023NA014', '装袋一体打标机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2023-03-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878104145922, NULL, NULL, 'GPD2023NA029', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878158671873, NULL, NULL, 'GPD2023NA030', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878209003521, NULL, NULL, 'GPD2023NA031', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878255140866, NULL, NULL, 'GPD2023NA032', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878305472513, NULL, NULL, 'GPD2023NA033', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878355804162, NULL, NULL, 'GPD2023NA034', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878397747202, NULL, NULL, 'GPD2023NA035', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878452273153, NULL, NULL, 'GPC2023NA015', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878494216193, NULL, NULL, 'GPC2023NA016', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878540353538, NULL, NULL, 'GPC2023NA017', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878578102274, NULL, NULL, 'GPA2023NA008', '显微镜(带屏幕)', '【2K版】TD2KHU(带11.6寸显示器)', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市福田区金基泰电子工具商行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878620045313, NULL, NULL, 'GPA2023NA009', '耐电压测试仪', 'WB2670A', '杭州希玛电子有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '杭州希玛电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878666182658, NULL, NULL, 'GPA2023NA013', '静电放电发生器', 'EMS61000-2A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878708125698, NULL, NULL, 'GPA2023NA010', '精密LED电参数测试仪', 'PLT505K测试仪一套', '深圳市宝安区新安安捷伦电子工具行', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市宝安区新安安捷伦电子工具行', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878766845953, NULL, NULL, 'GPA2023NA012', 'LCR数字电桥', 'TH2810B+(自动LCR功能,10KHz)', '常州同惠电子股份有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '常州同惠电子股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878821371905, NULL, NULL, 'GPA2023NA011', '数显高度计测试台', '千分表0-50(精准型)+比测台200*30', '乐清市禾木仪器仪表有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '乐清市禾木仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878875897858, NULL, NULL, 'GPG2023NA012', '数显扭力扳手', 'SLD-10 1/4”0.5-10 增套筒9件', '东莞市景如量仪科技有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '东莞市景如量仪科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878934618114, NULL, NULL, 'GPA2023NA014', '直流电源(0~60V)', 'SS-6010KD', '永城市佰信电子商务有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '永城市佰信电子商务有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878989144065, NULL, NULL, 'GPA2023NA015', '色差仪', 'SR-60手持式', '北京时代创客科技有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '北京时代创客科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879039475713, NULL, NULL, 'GPA2023NA016', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879102390274, NULL, NULL, 'GPA2023NA017', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879161110530, NULL, NULL, 'GPA2023NA018', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879219830786, NULL, NULL, 'GPG2023NA017', '防爆柜', '45加仑蓝加厚', '洛阳欧力朗办公家具有限公司', NULL, NULL, '2023-04-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳欧力朗办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879278551042, NULL, NULL, 'GPG2023NA018', '电子防潮柜', '黑色防静电HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-04-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879337271297, NULL, NULL, 'GPG2023NL019', '防静电桌(远方)', '1600*800*800mm', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-20', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879383408642, NULL, NULL, 'GPC2023NL019', '进口高低温箱', '伟思富奇 600L PRO', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-13', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879442128898, NULL, NULL, 'GPC2023NL020', '进口高低温箱', '伟思富奇 180L PRO', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879500849153, NULL, NULL, 'GPC2023WA001', '阿特拉斯空气压缩机(二手)', 'GA22流量:3.1m3 /min0.8MPA', '苏州阿特拉斯', NULL, NULL, '2022-06-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用,原验收单编号GPC2023NA018改为账外'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879542792193, NULL, NULL, 'GPA2023NA019', '传导抗扰度测试系统', 'EMS61000-6B 射频传导抗扰度测试系统', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-24', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879588929537, NULL, NULL, 'GPG2023NL020', '大理石平台大理石', '定制1600mmX600mmX150mm', '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879626678273, NULL, NULL, 'GPG2023NL021', '大理石平台大理石', '定制1600mmX600mmX150mm', '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879677009922, NULL, NULL, 'GPD2023NL036', '大理石平台架', '部为80X80型材架,配福马轮等', '上海皇闽铝业有限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879727341569, NULL, NULL, 'GPD2023NL037', '大理石平台架', '部为80X80型材架,配福马轮等', '上海皇闽铝业有限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879786061826, NULL, NULL, 'GOD2023NL188', '型材安装桌', '定做桌子', '上海蓄莹实业有限公司', NULL, NULL, '2023-04-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879844782082, NULL, NULL, 'GOD2023NL189', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于3楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879903502337, NULL, NULL, 'GOD2023NL190', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于4楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879962222593, NULL, NULL, 'GOD2023NL191', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于5楼车间'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880046108674, NULL, NULL, 'GOD2023NL192', '电脑桌', '定做桌子', '上海蓄莹实业有限公司', NULL, NULL, '2022-11-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880113217537, NULL, NULL, 'GPC2023NL021', 'XRAY点料机', 'X-RAY点料机 XC-3100', '瑞茂光学(苏州)有限公司', NULL, NULL, '2023-05-04', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '瑞茂光学(苏州)有限公司', NULL, NULL, NULL, NULL, 'SMT物料盘点使用设备'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880155160578, NULL, NULL, 'GPB2023NA036', '烫压治具(一出三)', '8EA-148-4-G', '江阴市欣铖电子有限公司', NULL, NULL, '2023-05-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '江阴市欣铖电子有限公司', NULL, NULL, NULL, NULL, '安徽工厂8EA烫压柱子使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880230658049, NULL, NULL, 'GPD2023NA039', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880297766914, NULL, NULL, 'GPD2023NA040', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880360681473, NULL, NULL, 'GPD2023NA041', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880406818818, NULL, NULL, 'GPD2023NA042', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880461344769, NULL, NULL, 'GPD2023NA043', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880503287809, NULL, NULL, 'GPD2023NA044', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880536842241, NULL, NULL, 'GPD2023NA045', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共3组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880578785281, NULL, NULL, 'GPD2023NA046', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880612339714, NULL, NULL, 'GPD2023NA047', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880658477058, NULL, NULL, 'GPD2023NA048', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880700420098, NULL, NULL, 'GPD2023NA049', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880742363138, NULL, NULL, 'GPD2023NA050', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880784306177, NULL, NULL, 'GPD2023NA051', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880826249218, NULL, NULL, 'GPD2023NA052', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880876580865, NULL, NULL, 'GPD2023NA053', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880914329602, NULL, NULL, 'GPD2023NA054', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880956272641, NULL, NULL, 'GOA2023NA090', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881006604290, NULL, NULL, 'GOA2023NA091', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881048547329, NULL, NULL, 'GOA2023NA092', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881090490370, NULL, NULL, 'GOA2023NA093', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881132433409, NULL, NULL, 'GOA2023NA094', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881178570754, NULL, NULL, 'GOA2023NA095', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881220513794, NULL, NULL, 'GOA2023NA096', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881258262530, NULL, NULL, 'GOA2023NA097', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881300205570, NULL, NULL, 'GOA2023NA098', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881342148610, NULL, NULL, 'GOA2023NA099', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881388285953, NULL, NULL, 'GOA2023NA100', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881434423298, NULL, NULL, 'GOA2023NA101', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881488949250, NULL, NULL, 'GOA2023NA102', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881539280898, NULL, NULL, 'GPC2023NL022', '除湿机', 'ASM-C138 138L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-05-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881589612545, NULL, NULL, 'GPC2023NL023', '缓冲气泡机', '工业级低速缓冲气垫机 2700型', '上海吉雄文化用品有限公司', NULL, NULL, '2023-05-24', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海吉雄文化用品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881639944194, NULL, NULL, 'GPC2023NL025', '半自动端子机(OTP)', 'YT-2T高精密超静音压接机', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-04-02', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '前加工使用,OTP设备'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881681887234, NULL, NULL, 'GOD2023NA548', '工具柜', '1000*500*1800,通门内四板带背网,灰色', '上海华派办公家具有限公司', NULL, NULL, '2023-05-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海华派办公家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881732218882, NULL, NULL, 'GPD2023NA077', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881778356225, NULL, NULL, 'GPD2023NA078', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881837076482, NULL, NULL, 'GPD2023NA079', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881879019522, NULL, NULL, 'GPC2023NA029', '冷水机', '冷水机组QYL-D25(A)', '南京利德盛机械有限公司', NULL, NULL, '2023-05-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '南京利德盛机械有限公司', NULL, NULL, NULL, NULL, '安徽工厂,步入式高低温用,包含新增管道施工2500元'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881925156865, NULL, NULL, 'GPC2023NA030', '环保设备', '袋式除尘器系统+吸附棉+二级活性炭系统', '上海环保科技有限公司', NULL, NULL, '2023-05-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海环保科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881971294209, NULL, NULL, 'GPC2023NA031', '步入式高低温箱', '1109 B CWT12'40-90', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882021625857, NULL, NULL, 'GPC2023NL028', 'A4折纸机', '升级全自动十字折纸机', '广州市帝森机电设备有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州市帝森机电设备有限公司', NULL, NULL, NULL, NULL, '资材科张桃请购,转生产线使用,2024.4.24转安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882059374594, NULL, NULL, 'GPA2023NL021', '光功率计', 'LP10-633波长', '是德鑫科技(深圳)有限公司', NULL, NULL, '2023-05-30', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '是德鑫科技(深圳)有限公司', NULL, NULL, NULL, NULL, '质量管理部IQC使用,谭莉莉请购'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882101317634, NULL, NULL, 'GOD2023NA575', '工具柜', '630*400*810,灰白色 实选:灰白色110+刹车', '洛阳英飒金属制品有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳英飒金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882143260673, NULL, NULL, 'GOD2023NA576', '工具柜', '630*400*810,灰白色 实选:灰白色110+刹车', '洛阳英飒金属制品有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳英飒金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882185203713, NULL, NULL, 'GPD2023NA089', '兰宝操作台', '(福马轮)蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-04-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882231341058, NULL, NULL, 'GPA2023NL022', '固纬 多通道电源', 'GPS-2303C 固纬 多通道电源', '东莞市创开电子仪器有限公司', NULL, NULL, '2023-05-29', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '东莞市创开电子仪器有限公司', NULL, NULL, NULL, NULL, 'DQM部小批鉴定使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882277478401, NULL, NULL, 'GPC2023NL024', '激光喷锡焊', 'QUICK LB10激光喷锡焊工作站', '快克智能装备股份有限公司', NULL, NULL, '2022-12-20', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 'PSE,PSR拼版焊接使用设备'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882336198657, NULL, NULL, 'GPC2023NL036', '标签剥离机', 'X-130 进口-非透明标签', '深圳市优质素贸易有限公司', NULL, NULL, '2023-06-12', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '深圳市优质素贸易有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882386530306, NULL, NULL, 'GPC2023NL026', '紫外激光打标机', 'SZCT-UV-5W', '苏州楚天激光有限公司', NULL, NULL, '2023-05-29', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州楚天激光有限公司', NULL, NULL, NULL, NULL, '楚天紫外5w,3楼前加工现货激光打标用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882436861953, NULL, NULL, 'GPC2023NL027', '桌面式打印装袋一体机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2023-05-29', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, NULL, '3楼吴丽雅现货包装用设备'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882487193601, NULL, NULL, 'GPD2023NL090', '包装机工作平台(蓄莹定制)', '配福马轮 800*570*2000mm(台面高600mm)', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-25', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '3楼现货包装区域吴丽雅使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882541719554, NULL, NULL, 'GPA2023NL023', '直流电源', '固纬GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882592051201, NULL, NULL, 'GPA2023NL024', '直流电源', '固纬GPS-3031DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882638188545, NULL, NULL, 'GPA2023NL025', '直流电源', '固纬GPS-3032DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882684325889, NULL, NULL, 'GPA2023NL026', '直流电源', '固纬GPS-3033DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882734657537, NULL, NULL, 'GPA2023NL027', '直流电源', '固纬GPS-3034DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882772406274, NULL, NULL, 'GPA2023NL028', '直流电源', '固纬GPS-3035DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882818543617, NULL, NULL, 'GPA2023NL029', '直流电源', '固纬GPS-3036DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882864680962, NULL, NULL, 'GPA2023NL030', '直流电源', '固纬GPS-3037DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882906624001, NULL, NULL, 'GPA2023NL031', '直流电源', '固纬GPS-3038DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882952761346, NULL, NULL, 'GPA2023NL032', '直流电源', '固纬GPS-3039DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883007287298, NULL, NULL, 'GPA2023NL033', '直流电源', '固纬GPS-3040DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883045036034, NULL, NULL, 'GPA2023NL034', '高精度台式万用表', '型号:HT8845', '蚯蚓电子(上海)有限公司', NULL, NULL, '2023-07-14', NULL, 'DQM部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '蚯蚓电子(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883095367682, NULL, NULL, 'GPA2023NL035', '一键式快速测量仪', 'DSF-S100', '迪赛福精密量仪(深圳)有限公司', NULL, NULL, '2023-06-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '迪赛福精密量仪(深圳)有限公司', NULL, NULL, NULL, NULL, '原IQC来料检验使用,谭莉莉请购。2023.11.15转移安徽兰宝'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883145699329, NULL, NULL, 'GPD2023NA091', '烤箱放置桌', '工作台60*60*60cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883187642370, NULL, NULL, 'GPD2023NA092', '烤箱放置桌', '工作台80*75*70cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883242168322, NULL, NULL, 'GPD2023NA093', '烤箱放置桌', '工作台80*45*45cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883288305665, NULL, NULL, 'GOD2023NA588', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883334443010, NULL, NULL, 'GOD2023NA589', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883397357569, NULL, NULL, 'GOD2023NA590', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883447689218, NULL, NULL, 'GPA2023NL036', '三路可编程直流电源', 'IT6322/艾德克斯', '上海致广电子技术有限公司', NULL, NULL, '2023-07-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883506409474, NULL, NULL, 'GPA2023NL037', '信号发生器', 'AFG1062/泰克', '上海致广电子技术有限公司', NULL, NULL, '2023-07-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883565129730, NULL, NULL, 'NPG2023H013', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883615461378, NULL, NULL, 'NPG2023H014', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883661598721, NULL, NULL, 'NPG2023H015', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883707736066, NULL, NULL, 'NPG2023H016', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883779039234, NULL, NULL, 'NPG2023H017', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883833565185, NULL, NULL, 'NPG2023H018', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883883896834, NULL, NULL, 'GPD2023NA094', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883925839873, NULL, NULL, 'GPD2023NA095', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883984560129, NULL, NULL, 'GPD2023NA096', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884039086082, NULL, NULL, 'GPD2023NA097', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884089417729, NULL, NULL, 'GPD2023NA098', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884148137985, NULL, NULL, 'GPD2023NA099', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884202663937, NULL, NULL, 'GPD2023NA100', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884248801282, NULL, NULL, 'GPD2023NA101', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884303327234, NULL, NULL, 'GPD2023NA102', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884349464578, NULL, NULL, 'GPD2023NA103', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884403990530, NULL, NULL, 'GPD2023NA104', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884441739266, NULL, NULL, 'GPD2023NA105', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884496265217, NULL, NULL, 'GPD2023NA106', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884538208258, NULL, NULL, 'GPD2023NA107', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884575956993, NULL, NULL, 'GPD2023NA108', '喷码机工作台', '定制规格', '上海蓄莹实业有限公司', NULL, NULL, '2023-06-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884617900034, NULL, NULL, 'GPG2023NA137', '智能仓储物流', 'PSW-DGR7-FLB', '苏州派迅智能科技有限公司', NULL, NULL, '2023-06-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州派迅智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884659843074, NULL, NULL, 'GPD2023NA110', '激光调组机摆放操作台', '80*70*60蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884697591810, NULL, NULL, 'GPD2023NA111', '激光调组机摆放操作台', '80*70*60蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884739534849, NULL, NULL, 'GPG2023NA138', '排风扇(排风管道用)', '空压机房排热', '德通', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '京东', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884777283586, NULL, NULL, 'GPG2023NA139', '排风扇(排风管道用)', '空压机房排热', '德通', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '京东', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884823420929, NULL, NULL, 'GPC2023NL052', '定制伺服剥皮打端子机', '新款2T型号:HN-BD06配905端子磨具一套', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-06-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884869558273, NULL, NULL, 'GPC2023NA046', '高精微量注塑机', 'TY-200 螺杆Φ22 25T', '昆山大禹集成智能科技有限公司', NULL, NULL, '2023-07-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884919889921, NULL, NULL, 'GPC2023NA047', '微型水式模温机', 'VTW-06W-120℃ 6KW', '上海文穗机械有限公司', NULL, NULL, '2023-07-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海文穗机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884970221569, NULL, NULL, 'GPC2023NA050', '视觉激光调组机', 'BSU-20WL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885028941826, NULL, NULL, 'GPD2023NA113', '包胶间测试 工作台', '65*50*100cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885129605121, NULL, NULL, 'GPD2023NA114', '包胶间测试 工作台', '65*50*100cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885171548162, NULL, NULL, 'GPC2023NA041', '型材切割机', 'J3G-FF03-400', '苏州洪正机电设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州洪正机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885217685506, NULL, NULL, 'GPC2023NA042', '气动攻丝机', '1米气动M3-16万向', '昆山米尔斯机械设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山米尔斯机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885259628546, NULL, NULL, 'GPG2023NA140', '空压机散热风管', '定制规格', '赣瑞通风', NULL, NULL, '2023-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '赣瑞通风', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885305765889, NULL, NULL, 'GPC2023NA049', '风冷冷水机', '风冷式 WSIA-4HP', '上海文穗机械有限公司', NULL, NULL, '2023-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海文穗机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885347708929, NULL, NULL, 'GPC2023NL039', '进口高低温箱', '伟思富奇 180L PRO', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2023-08-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '放置于生技产品组实验室,2023.12.21转研发'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885385457665, NULL, NULL, 'GPC2023NL040', '视觉激光调组机', 'BSU-20WL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-28', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885435789313, NULL, NULL, 'GPD2023NA112', '液压升降手推车', '合力整体泵2.5吨550*1150', '合肥市猛工机电设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '合肥市猛工机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885486120961, NULL, NULL, 'GOA2023NA165', '自动线测试台电脑', 'i5-4200Y/4G+128G+配件6项', '深圳市纪元供应链有限公司', NULL, NULL, '2023-08-14', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市纪元供应链有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885532258306, NULL, NULL, 'GPC2023NA043', '气动拉铆母枪', '整机(快换)M3-12配齐', '上海托恩机械有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海托恩机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885582589953, NULL, NULL, 'GPC2023NA044', '冷却循环水箱', 'LX-10塑料内胆水箱10升', '沙福电气(上海)有限公司 ', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '沙福电气(上海)有限公司 ', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885641310210, NULL, NULL, 'GPC2023NA048', '鞋底清洁机', '1800*760*140', '泰州天得仪器设备有限公司', NULL, NULL, '2023-08-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '泰州天得仪器设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885700030465, NULL, NULL, 'GOG2023NL019', '制冰机', '制冰专用', '上海创历', NULL, NULL, '2023-08-28', NULL, '综合管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海华艳酒店设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885750362114, NULL, NULL, 'GOG2023NL021', '烤箱', 'SM2-523H', '上海新麦', NULL, NULL, '2023-08-28', NULL, '综合管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海华艳酒店设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885792305154, NULL, NULL, 'GPB2023NL040', '超声波模具', 'PTF 超声波模具(盖板)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885825859585, NULL, NULL, 'GPB2023NL041', '超声波模具', 'SPM 超声波模具(壳体)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885859414017, NULL, NULL, 'GPB2023NL042', '超声波模具', '光纤放大器 模具(壳体)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885934911490, NULL, NULL, 'GPD2023NA115', '杂货梯', 'TWJ200/0.4-AS', '扬州誉美电梯有限公司', NULL, NULL, '2021-04-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '扬州誉美电梯有限公司', NULL, NULL, NULL, NULL, '安徽工厂B栋使用,后补验收'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885968465921, NULL, NULL, 'GPC2023NH053', '气保焊机', '型号:NB-500WE,上海沪工', '上海焱阳焊接设备有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885997826049, NULL, NULL, 'GPC2023NH054', '气保焊机', '型号:NB-500WE,上海沪工', '上海焱阳焊接设备有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886031380481, NULL, NULL, 'GPC2023NA056', '切割房室内行车吊', '起重机: 8*6*4米', '合肥泰然起重机有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '合肥泰然起重机有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886060740609, NULL, NULL, 'GPA2023NL038', '显微镜(带屏幕)', 'TD2KHU【2K版】TD2KHU(带11.6寸显示)', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-08-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886094295042, NULL, NULL, 'GPA2023NL039', '便携触屏示波器', 'DS4T1012 主机+探头+便携包', '深圳市梦源科技有限公司', NULL, NULL, '2023-08-16', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市梦源科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886132043778, NULL, NULL, 'GPA2023NL040', '显微镜', '三锵泰达TD-745A双目体视显微镜 TD-745A【标准板', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-08-21', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886169792514, NULL, NULL, 'GOA2023NL195', 'Teclast/台电 X4 大陆版 6+25', 'X4大陆版 6+256', '台电天猫店', NULL, NULL, '2023-08-28', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市佳利途科技有限公司', NULL, NULL, NULL, NULL, 'SMT线首件确认'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886211735553, NULL, NULL, 'GPB2023NL043', 'PTB 灯罩 超声波模具', '20Khz', '东和超音波机械设备有限公司', NULL, NULL, '2023-09-06', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886249484290, NULL, NULL, 'GPB2023NL044', 'PTB 滤光片 超声波模具', '20K', '东和超音波机械设备有限公司', NULL, NULL, '2023-09-06', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886291427329, NULL, NULL, 'GPD2023NL150', '测试检测平台', '0.01精度隐藏式C3丝杆滑台模组', '成都市联动瑞芯科技有限公司', NULL, NULL, '2023-09-11', NULL, '研发重点实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '成都市联动瑞芯科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886329176066, NULL, NULL, 'GPC2023NL060', '排气装置(风管、风机)', '定制', '厂制', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886366924801, NULL, NULL, 'GPD2023NL151', '四层架', '1400*600*1800', '厂制', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886408867841, NULL, NULL, 'GPD2023NL152', '双层工作台', '1000*800*850', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886446616578, NULL, NULL, 'GPD2023NL153', '保温工作台', '1500*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886484365313, NULL, NULL, 'GPD2023NL154', '保温工作台', '1500*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886568251394, NULL, NULL, 'GPG2023NL141', '保温柜', '700*700*868', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886601805826, NULL, NULL, 'GPD2023NL156', '工作台', '1200*450*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886685691906, NULL, NULL, 'GPD2023NL157', '定制工作台', '600*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886731829249, NULL, NULL, 'GPD2023NL158', '定制工作台', '600*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886782160898, NULL, NULL, 'GPD2023NL159', '双层推车', '900*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886828298242, NULL, NULL, 'GPD2023NL160', '保温车', '700*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886882824193, NULL, NULL, 'GPG2023NL142', '燃气炉', '1500*800*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886937350145, NULL, NULL, 'GPG2023NL143', '加热炉', '700*700*500', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886979293185, NULL, NULL, 'GPD2023NL161', '双门保温车', '1410*715*1755', '美时', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887029624834, NULL, NULL, 'GPD2023NL162', '托盘架车', '460*650*1800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887079956481, NULL, NULL, 'GPD2023NA164', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887126093825, NULL, NULL, 'GPD2023NA165', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887172231169, NULL, NULL, 'GPD2023NA166', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887218368513, NULL, NULL, 'GPD2023NA167', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887268700161, NULL, NULL, 'GPD2023NA168', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887306448898, NULL, NULL, 'GPD2023NA169', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887344197633, NULL, NULL, 'GPD2023NA163', '登高车', 'GTJZ12 品牌:今朝飞翔', '济南朝翔升降机械有限公司', NULL, NULL, '2023-10-09', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '济南朝翔升降机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887402917890, NULL, NULL, 'GPC2023NL061', '激光塑料焊接机', '双平台振镜激光塑料焊接设备', '昆山欣合通精密机械科技有限公司', NULL, NULL, '2023-08-23', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山欣合通精密机械科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887453249537, NULL, NULL, 'GPC2023NL062', '智能称重扫描一体机', 'SJJ-EX002 称重范围50KG', '深圳市随嘉加科技有限公司', NULL, NULL, '2023-10-10', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '深圳市随嘉加科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887495192577, NULL, NULL, 'GPD2023NA170', '高低温间货架', '加厚中型200*60*200', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-10-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887541329921, NULL, NULL, 'GPD2023NA171', '高低温间货架', '加厚中型200*60*200', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-10-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887579078658, NULL, NULL, 'GPC2023NA063', '燃气蒸汽发生器', 'DN-0.1TY', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887621021697, NULL, NULL, 'GPC2023NA064', '燃气蒸汽发生器', 'DN-0.1TY', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887675547650, NULL, NULL, 'GPC2023NA065', '小型台式铣钻攻床', '(ZXG7032/1500W/220V)单相 品牌:德克', '温岭市泽国江日机械厂(普通合伙)', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '温岭市泽国江日机械厂(普通合伙)', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887721684994, NULL, NULL, 'GPA2023NL041', '标准型光束分析仪系统', 'AUT CMOS-1.001-Nano', '上海昊量光电设备有限公司', NULL, NULL, '2023-11-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海昊量光电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887772016642, NULL, NULL, 'GPA2023NL042', '直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-11-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887822348289, NULL, NULL, 'GPA2023NL043', '直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-11-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887868485634, NULL, NULL, 'GPA2023NL045', '自动光学检测机', '德律TR7700在线型', '台湾德律科技股份有限公司', NULL, NULL, '2023-11-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '实物2020年到货,补验收单'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887906234369, NULL, NULL, 'GPA2023NL044', '红外光谱仪辐照计', 'HP350FR', '杭州双色智能检测仪器有限公司', NULL, NULL, '2023-12-04', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '杭州双色智能检测仪器有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887948177409, NULL, NULL, 'GOA2023NL251', '服务器', 'DELL T40塔式服务器 I7-9700/32G/256GSSD+2*2T', '上海签成企业管理有限公司', NULL, NULL, '2023-10-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887990120449, NULL, NULL, 'GPB2023NA045', '折弯机模具 (刀模)', '材料42CrMo 锻件', '江苏金方圆数控机床有限公司', NULL, NULL, '2023-11-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏金方圆数控机床有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888040452098, NULL, NULL, 'GPC2023NA066', '半导体激光打标系统', 'DPA-15W', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '配PSE-YC25传感器自动化线进厂,单独购买'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888308887553, NULL, NULL, 'GPC2023NA067', '塑料激光焊接系统', '配PSE-YC25传感器组装线', '昆山欣合通精密机械科技有限公司', NULL, NULL, '2023-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山欣合通精密机械科技有限公司', NULL, NULL, NULL, NULL, '配PSE-YC25传感器自动化线进厂,单独购买'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888350830593, NULL, NULL, 'GOA2023NL252', '针式打印机', '惠普', '惠普', NULL, NULL, '2023-12-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '惠普', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888388579329, NULL, NULL, 'NPG2023H019', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888430522370, NULL, NULL, 'NPG2023H020', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888480854018, NULL, NULL, 'NPG2023H021', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888535379969, NULL, NULL, 'NPG2023H022', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888589905922, NULL, NULL, 'NPG2023H023', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888636043266, NULL, NULL, 'NPG2023H024', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888677986306, NULL, NULL, 'NPG2023H025', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888728317953, NULL, NULL, 'NPG2023H026', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888787038210, NULL, NULL, 'NPG2023H027', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888828981249, NULL, NULL, 'NPG2023H028', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888883507201, NULL, NULL, 'GPC2023NL068', '双工位铜箔包胶机', '双工位铜箔包胶机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-10-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888938033153, NULL, NULL, 'GPA2023NL047', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,2024.03.02转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888979976193, NULL, NULL, 'GPA2023NL048', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889021919233, NULL, NULL, 'GPA2023NL049', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889063862273, NULL, NULL, 'GPA2023NL050', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,2024.03.02转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889109999617, NULL, NULL, 'GPA2023NL051', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889164525569, NULL, NULL, 'GPA2023NL052', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889214857218, NULL, NULL, 'GPA2023NL053', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889256800257, NULL, NULL, 'GPA2023NL054', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889307131905, NULL, NULL, 'GPA2023NL055', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889357463554, NULL, NULL, 'GPA2023NL056', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889407795201, NULL, NULL, 'GPA2023NL057', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889458126849, NULL, NULL, 'GPA2023NL058', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889504264193, NULL, NULL, 'GPA2023NL059', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889550401537, NULL, NULL, 'GPA2023NL060', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889604927489, NULL, NULL, 'GPA2023NL061', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889655259138, NULL, NULL, 'GPA2023NL062', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889697202178, NULL, NULL, 'GPA2023NL063', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889743339522, NULL, NULL, 'GPA2023NL064', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889797865474, NULL, NULL, 'GPA2023NL065', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889835614209, NULL, NULL, 'GPA2023NL066', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889890140161, NULL, NULL, 'GPA2023NL067', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板,2024.03.02转移到安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889944666113, NULL, NULL, 'GPA2023NL068', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889986609154, NULL, NULL, 'GPA2023NL069', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890032746497, NULL, NULL, 'GPA2023NL070', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890074689537, NULL, NULL, 'GPA2023NL071', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890112438274, NULL, NULL, 'GPA2023NL072', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890162769921, NULL, NULL, 'GPA2023NL073', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890217295874, NULL, NULL, 'GPA2023NL074', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890259238914, NULL, NULL, 'GPA2023NL075', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890301181953, NULL, NULL, 'GPA2023NL076', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890347319297, NULL, NULL, 'GPA2023NL077', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890393456641, NULL, NULL, 'GPC2023NA045', 'PU05前段装配设备', 'PU05前段装配设备共7个环节一条线', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890439593985, NULL, NULL, 'GPG2023NA144', '供气管道、汽化炉', '江苏杨帆气体控制设备有限公司', '江苏杨帆气体控制设备有限公司', NULL, NULL, '2023-12-04', NULL, '安徽兰宝兰埔', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏杨帆气体控制设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890485731330, NULL, NULL, 'GOG2023NL104', '海康2D线扫套装', 'MV-CL042-91GM 海康威视', '海康威视', NULL, NULL, '2023-12-04', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州中昌智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890527674369, NULL, NULL, 'GPC2024NL002', '工业热缩管吹风机', 'SS-AirHST-02 1500W+气源干燥处理器', '广东三生智能科技有限公司', NULL, NULL, '2024-01-11', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '广东三生智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890586394625, NULL, NULL, 'GPC2024NL003', 'UV胶固化光源照射机', '标准一拖二 HY-UV0003', '珠海市皓云光电科技有限公司', NULL, NULL, '2024-01-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '珠海市皓云光电科技有限公司', NULL, NULL, NULL, NULL, '淘宝购买UV固化机照射灯一拖二'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890632531970, NULL, NULL, 'GPA2024NL001', '卤素水分测定仪', 'DS100A/2mg', '上海焕颢仪器有限公司', NULL, NULL, '2024-01-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海焕颢仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890678669313, NULL, NULL, 'GPC2024NA005', '高精微量注塑机', 'TYL-400.J', '昆山大禹集成智能科技有限公司', NULL, NULL, '2024-01-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890733195266, NULL, NULL, 'GPC2024NL006', '自动修边去毛刺机', '40L(0.55千瓦)', '湖州双林恒丰研磨材料厂', NULL, NULL, '2024-02-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '湖州双林恒丰研磨材料厂', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890775138305, NULL, NULL, 'GPA2024NL002', '普瑞逊计数电子天平', 'HT-600NC 600g/0.01g', '成都普瑞逊电子有限公司', NULL, NULL, '2024-03-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海宜工电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890821275650, NULL, NULL, 'GPC2024NA008', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-03-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890875801601, NULL, NULL, 'GPC2024NA009', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-03-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890926133249, NULL, NULL, 'GPC2024NA010', '氩弧焊电焊两用焊机', '瑞凌TIG-250CT+3米焊钳(电流10-230A)', '兰山区威克士工具中心', NULL, NULL, '2024-03-15', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '兰山区威克士工具中心', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890968076290, NULL, NULL, 'GPA2024NL003', '数控分度盘', '数控CNC HD-T640改制五轴 THRT-5AX-AR170', '嘉兴天合机械有限公司', NULL, NULL, '2024-03-20', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '嘉兴天合机械有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891018407938, NULL, NULL, 'GPD2024NA001', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891056156673, NULL, NULL, 'GPD2024NA002', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891093905409, NULL, NULL, 'GPD2024NA003', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891131654145, NULL, NULL, 'GPD2024NA004', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891169402881, NULL, NULL, 'GPD2024NA005', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891215540226, NULL, NULL, 'GPD2024NA006', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891261677570, NULL, NULL, 'GPD2024NA007', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891316203522, NULL, NULL, 'GPD2024NA008', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891366535169, NULL, NULL, 'GPD2024NA009', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891416866818, NULL, NULL, 'GPD2024NA010', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891467198466, NULL, NULL, 'GPD2024NA011', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891513335809, NULL, NULL, 'GPD2024NA012', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891551084546, NULL, NULL, 'GPD2024NA013', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891597221889, NULL, NULL, 'GPD2024NA014', '中型货架', '1800*600*2000mm 5层板4层空  重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891643359233, NULL, NULL, 'GPD2024NA015', '中型货架', '1800*600*2000mm 5层板4层空  重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891689496577, NULL, NULL, 'GPD2024NA016', '中型货架', '1800*600*2000mm 5层板4层空  重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891731439617, NULL, NULL, 'GPG2024NA002', '鼓风恒温干燥箱', 'DHG-9140A', '睦尼试验设备(上海)有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891777576961, NULL, NULL, 'GPC2024NA011', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型', '上海歙州实业发展有限公司', NULL, NULL, '2024-04-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891827908609, NULL, NULL, 'GPC2024NA012', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-04-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891874045954, NULL, NULL, 'GPG2024NA047', '工业吸尘器', 'RS-J2078荣事达', '安徽荣庆清洁科技有限公司', NULL, NULL, '2024-04-03', NULL, '安徽兰宝兰埔', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽荣庆清洁科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891928571906, NULL, NULL, 'GPG2024NA048', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891970514945, NULL, NULL, 'GPG2024NA049', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892016652289, NULL, NULL, 'GPG2024NA050', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892058595329, NULL, NULL, 'GPG2024NA051', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892104732674, NULL, NULL, 'GPG2024NA052', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892150870017, NULL, NULL, 'GPG2024NA053', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892192813057, NULL, NULL, 'GPG2024NA054', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892238950402, NULL, NULL, 'GPG2024NA055', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892276699138, NULL, NULL, 'GPG2024NA056', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892310253569, NULL, NULL, 'GPG2024NA057', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892360585217, NULL, NULL, 'GPG2024NA058', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892402528258, NULL, NULL, 'GPG2024NA059', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892448665602, NULL, NULL, 'GPG2024NA060', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892490608642, NULL, NULL, 'GPG2024NA061', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892540940289, NULL, NULL, 'GPG2024NA062', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892574494722, NULL, NULL, 'GPG2024NA063', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892620632065, NULL, NULL, 'GPG2024NA064', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892662575106, NULL, NULL, 'GPG2024NA065', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892704518145, NULL, NULL, 'GPG2024NA066', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892750655489, NULL, NULL, 'GPG2024NA067', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892796792833, NULL, NULL, 'GPG2024NA068', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892842930178, NULL, NULL, 'GPG2024NA069', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892884873218, NULL, NULL, 'GPG2024NA070', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892926816258, NULL, NULL, 'GPG2024NA071', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892972953601, NULL, NULL, 'GPG2024NA072', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893014896641, NULL, NULL, 'GPG2024NA073', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893056839681, NULL, NULL, 'GPG2024NA074', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893107171330, NULL, NULL, 'GPG2024NA075', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893149114370, NULL, NULL, 'GPG2024NA076', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893191057410, NULL, NULL, 'GPG2024NA077', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893237194753, NULL, NULL, 'GPD2024NA021', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893283332098, NULL, NULL, 'GPD2024NA022', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893325275138, NULL, NULL, 'GPD2024NA023', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893371412482, NULL, NULL, 'GPD2024NA024', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893409161218, NULL, NULL, 'GPD2024NA025', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893442715649, NULL, NULL, 'GPD2024NA026', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893480464385, NULL, NULL, 'GPD2024NA027', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893530796034, NULL, NULL, 'GPD2024NA028', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893581127682, NULL, NULL, 'GPD2024NA029', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893623070722, NULL, NULL, 'GPD2024NA030', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893673402370, NULL, NULL, 'GPD2024NA031', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893715345409, NULL, NULL, 'GPD2024NA032', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893761482754, NULL, NULL, 'GPD2024NA033', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893807620098, NULL, NULL, 'GPD2024NA034', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893870534658, NULL, NULL, 'GPD2024NA035', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893916672001, NULL, NULL, 'GPD2024NA036', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893962809346, NULL, NULL, 'GPD2024NA037', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894008946690, NULL, NULL, 'GPD2024NA038', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894063472641, NULL, NULL, 'GPD2024NA039', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894113804290, NULL, NULL, 'GPD2024NA040', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894151553025, NULL, NULL, 'GPD2024NA041', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894197690369, NULL, NULL, 'GPD2024NA042', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894243827713, NULL, NULL, 'GPD2024NA043', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894298353666, NULL, NULL, 'GPD2024NA044', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894340296706, NULL, NULL, 'GPD2024NA045', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894390628354, NULL, NULL, 'GPD2024NA046', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894440960002, NULL, NULL, 'GPD2024NA047', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894499680257, NULL, NULL, 'GPD2024NA048', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894550011906, NULL, NULL, 'GPD2024NA049', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894612926465, NULL, NULL, 'GPD2024NA050', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894654869505, NULL, NULL, 'GPD2024NA051', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894713589762, NULL, NULL, 'GPD2024NA052', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894768115714, NULL, NULL, 'GPD2024NA053', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894826835970, NULL, NULL, 'GPD2024NA054', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894868779009, NULL, NULL, 'GPD2024NA055', '精益管推车', '带福马轮650*450*850mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894919110657, NULL, NULL, 'GPD2024NA056', '精益管推车', '带福马轮800*600*800mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894965248001, NULL, NULL, 'GPD2024NA057', '精益管推车', '带福马轮800*600*800mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895015579649, NULL, NULL, 'GPA2024NL004', '水分检测设备', '水分检测设备设计及加工', '苏州择智工业设计有限公司', NULL, NULL, '2024-04-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州择智工业设计有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895065911298, NULL, NULL, 'GPD2024NA058', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895103660033, NULL, NULL, 'GPD2024NA059', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895141408770, NULL, NULL, 'GPD2024NA060', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895183351809, NULL, NULL, 'GPD2024NA061', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895221100545, NULL, NULL, 'GPC2024NL015', '同轴剥线机', 'Y-5807半自动', '常州市嘉研自动化设备有限公司', NULL, NULL, '2024-05-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '常州市嘉研自动化设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895271432193, NULL, NULL, 'GPC2024NA007', 'PU05自动化设备', '众泰兴—PU05后段装配组装线(第二段) DFM', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-07-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895321763842, NULL, NULL, 'GPC2024NA004', 'PSE-YC25自动化设备', 'PSE-YC25传感器组装线', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895367901185, NULL, NULL, 'GPA2024NA005', '密封检测仪+治具', 'F760-D020+RM-020', '上海仁莫电子科技有限公司', NULL, NULL, '2024-04-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895422427138, NULL, NULL, 'GPC2024NL014', '传感器操作频率设备', '定制规格', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-09-25', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895472758786, NULL, NULL, 'GPB2024NL001', '超声波上模(钢制)', 'LE40/80铜柱超声波上模具', '昆山东和超声波设备有限公司', NULL, NULL, '2023-05-06', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895527284737, NULL, NULL, 'GPC2024NL017', '线高精度喷射点胶机', 'IS-300H APJ1500', '深圳市轴心自控技术有限公司', NULL, NULL, '2024-04-02', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895573422081, NULL, NULL, 'GPC2024NA018', '剥皮扭线机', '3fn气动', '中山市东风镇大塑自动化机械设备商行', NULL, NULL, '2024-05-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '中山市东风镇大塑自动化机械设备商行', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895619559426, NULL, NULL, 'GPD2024NL062', '光电测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-02-20', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '上海2024.02请购,安徽使用,资产2024.6.6转安徽管理'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895669891074, NULL, NULL, 'GPC2024NA019', '自动绕线扎线机', 'BOQO2000', '东莞市博强自动化设备有限公司', NULL, NULL, '2024-05-14', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895711834114, NULL, NULL, 'GPC2024NA020', '除尘器', 'JN SK04+5.5k w+50HZ+4 桶 +1220x106 0x2250mm', '南京英奇环保设备有限公司', NULL, NULL, '2024-04-19', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '南京英奇环保设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895753777153, NULL, NULL, 'GPA2024NL007', '色差仪', '通用色差计NR10QC', '深圳市三恩时科技有限公司', NULL, NULL, '2024-06-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市三恩时科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895795720194, NULL, NULL, 'GPG2024NA078', '二期天然气安装工程', '安徽工厂二期定制管道', '马鞍山港华燃气', NULL, NULL, '2024-05-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '马鞍山港华燃气', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895841857537, NULL, NULL, 'GPC2024NA021', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型 水冷', '上海歙州实业发展有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895875411970, NULL, NULL, 'GPC2024NA022', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型 水冷', '上海歙州实业发展有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895921549314, NULL, NULL, 'GPC2024NA023', '工业热缩管吹风机', 'SS-AirHST-02 1500W 配件气源干燥处理器SS3000-03(', '广东三生智能科技有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广东三生智能科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895963492354, NULL, NULL, 'GPC2024NA024', '空气压缩机组', 'CA 37TKET', '权伟压缩机(芜湖)有限公司', NULL, NULL, '2024-04-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '权伟压缩机(芜湖)有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896001241089, NULL, NULL, 'GPD2024NA063', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896043184130, NULL, NULL, 'GPD2024NA064', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896093515778, NULL, NULL, 'GPD2024NA065', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896139653122, NULL, NULL, 'GPD2024NA066', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896189984770, NULL, NULL, 'GPD2024NA067', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896248705025, NULL, NULL, 'GPD2024NA068', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896294842369, NULL, NULL, 'GPD2024NA069', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896353562625, NULL, NULL, 'GPD2024NA070', '货架', '1800*600*1250mm 3层板2层空 一托二*1组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896395505666, NULL, NULL, 'GPD2024NA071', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896450031617, NULL, NULL, 'GPD2024NA072', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896500363265, NULL, NULL, 'GPD2024NA073', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896542306305, NULL, NULL, 'GPD2024NA074', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896584249346, NULL, NULL, 'GPC2024NA025', '无极变速放线机', '100kg', '深圳市余亿自动化设备有限公司', NULL, NULL, '2024-06-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市余亿自动化设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896626192385, NULL, NULL, 'GPA2024NL008', 'IO-Link测试设备', '兰宝定制(半成品测试)', '苏州市德智电子有限公司', NULL, NULL, '2024-05-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市德智电子有限公司', NULL, NULL, NULL, NULL, '兰宝定制设备(用于IO link半成品板测试)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896663941122, NULL, NULL, 'GPA2024NL009', 'IO-Link测试设备', '兰宝定制(成品测试)', '苏州市德智电子有限公司', NULL, NULL, '2024-05-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市德智电子有限公司', NULL, NULL, NULL, NULL, '兰宝定制设备(用于IO link成品板测试)'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896705884162, NULL, NULL, 'GPD2024NA079', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896743632897, NULL, NULL, 'GPD2024NA080', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896798158850, NULL, NULL, 'GPD2024NA081', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896835907585, NULL, NULL, 'GPC2024NA027', '点胶机 (控制器)', 'D-260轴心', '深圳市轴心自控技术有限公司', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896877850625, NULL, NULL, 'GPC2024NA029', 'VOC发生器', '2路VOC发生装置', '苏州孚然德实验设备有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州孚然德实验设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896919793666, NULL, NULL, 'GPG2024NA081', '智能称重扫描一体机', 'SJJ-EX002 称重范围50KG', '深圳市随嘉加科技有限公司', NULL, NULL, '2024-06-14', NULL, '安徽兰宝仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市随嘉加科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896970125314, NULL, NULL, 'GPC2024NL026', 'A4折纸机', 'gar02-4+Gar02-K', '广州市帝森机电设备有限公司', NULL, NULL, '2024-06-14', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广州市帝森机电设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897020456961, NULL, NULL, 'GPC2024NA030', '光纤激光切割机', '型号:6020-6000W', '广东宏石激光技术股份有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广东宏石激光技术股份有限公司', NULL, NULL, NULL, NULL, '装机一月内故障两次,验收期延迟1个月完成。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897074982914, NULL, NULL, 'GPC2024NA034', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897125314562, NULL, NULL, 'GPC2024NA035', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897175646209, NULL, NULL, 'GPC2024NA036', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897221783553, NULL, NULL, 'GPD2024NA082', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897267920897, NULL, NULL, 'GPD2024NA083', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897314058241, NULL, NULL, 'GPD2024NA084', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897360195585, NULL, NULL, 'GPD2024NA085', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897410527234, NULL, NULL, 'GPD2024NA086', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897448275970, NULL, NULL, 'GPD2024NA087', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897486024706, NULL, NULL, 'GPD2024NA088', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897523773441, NULL, NULL, 'GPD2024NA089', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897561522178, NULL, NULL, 'GPD2024NA090', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897599270913, NULL, NULL, 'GPD2024NA091', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897670574082, NULL, NULL, 'GPD2024NA092', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897712517121, NULL, NULL, 'GPD2024NA093', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897775431681, NULL, NULL, 'GPD2024NA094', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897817374722, NULL, NULL, 'GPD2024NA095', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897863512066, NULL, NULL, 'GPD2024NA096', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897905455105, NULL, NULL, 'GPD2024NA097', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897947398146, NULL, NULL, 'GPD2024NA098', '防静电工作台', '120*60*75*160mm 带两个抽屉,三个插座', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897993535490, NULL, NULL, 'GPD2024NA099', '防静电工作台', '120*60*75*160mm 带两个抽屉,三个插座', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898039672833, NULL, NULL, 'GPD2024NA100', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898090004482, NULL, NULL, 'GPD2024NA101', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898136141826, NULL, NULL, 'GPD2024NA102', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898182279169, NULL, NULL, 'GPD2024NA103', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898228416514, NULL, NULL, 'GPD2024NA104', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898274553857, NULL, NULL, 'GPD2024NA105', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898324885505, NULL, NULL, 'GPD2024NA106', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898379411458, NULL, NULL, 'GPD2024NA107', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898425548801, NULL, NULL, 'GPD2024NA108', '钢网放置架', '按图定制1600*600*1660mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感车间SMT线使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898463297537, NULL, NULL, 'GPD2024NL109', '折纸机工作台', '1430*580*690mm 按图定制', '上海昶申铝业有限公司', NULL, NULL, '2024-07-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898505240577, NULL, NULL, 'GPC2024NL037', '全自动电脑裁切机/切', '深圳迈腾 型号:MTF-200ST', '圳迈腾飞科技有限公司', NULL, NULL, '2024-07-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '圳迈腾飞科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898542989313, NULL, NULL, 'GPC2024NA038', '真空吸吊机', '整机承重 1600 公斤,外形尺寸 5*1 米', '得美能(广东)科技有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '得美能(广东)科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898593320962, NULL, NULL, 'GPC2024NA039', '气动攻丝机马达', '台湾原装M16马达 (含夹座) 直径56转速250', '常州晟鑫琦机电有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '常州晟鑫琦机电有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898702372865, NULL, NULL, 'GPA2024NL012', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,2024.08.27转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898744315905, NULL, NULL, 'GPA2024NL013', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,2024.08.27转移安徽公司'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898798841858, NULL, NULL, 'GPA2024NL014', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,放置在9700自动化设备里面调试工位'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898840784898, NULL, NULL, 'GPA2024NL015', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,在自动测试仪里面'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898882727938, NULL, NULL, 'GPC2024NL040', '压管机', 'DW-80分体壳环压设备', '景县明通机械设备有限公司', NULL, NULL, '2024-06-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '景县明通机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898924670978, NULL, NULL, 'GPA2024NL010', '粮食水分测试粉碎磨', '中储粮JSFM-III粮食水分测试粉碎磨', '广州沪瑞明仪器有限公司', NULL, NULL, '2024-08-07', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广州沪瑞明仪器有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898966614018, NULL, NULL, 'GOB2024NA011', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899012751362, NULL, NULL, 'GOB2024NA012', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899063083009, NULL, NULL, 'GOB2024NA013', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899109220354, NULL, NULL, 'GOB2024NA014', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899159552002, NULL, NULL, 'GPA2024NL016', '光功率计', 'LP10(标准波长633nm)官方标配', '深圳市田诚电子有限公司', NULL, NULL, '2024-08-12', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市田诚电子有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899201495041, NULL, NULL, 'GPD2024NA110', '叉车', 'CPCD50-LQ19 柴油车5吨定制', '龙工叉车', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '马鞍山市龙威工程机械贸易有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899243438081, NULL, NULL, 'GPC2024NA041', '手持式光纤激光焊接机', '2000w', '安徽好不贵激光科技有限公司', NULL, NULL, '2024-07-20', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽好不贵激光科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899285381122, NULL, NULL, 'GPC2024NA043', '蒸发器', '0.2t/h 蒸发器+水处理器+燃烧机', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899323129857, NULL, NULL, 'GPC2024NA044', '氩弧焊机', 'WSM-315E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899356684290, NULL, NULL, 'GPC2024NA045', '氩弧焊机', 'WSM-315E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899394433026, NULL, NULL, 'GPG2024NA082', '车间隔离网', '上网下板+2米移动门,共72米', '上海奕尔金属丝网制品有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海奕尔金属丝网制品有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899436376065, NULL, NULL, 'GPD2024NA111', '自调式焊接滚轮架', 'HGZ-5T', '无锡市兰亭机械设备有限公司', NULL, NULL, '2024-08-08', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '无锡市兰亭机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899482513409, NULL, NULL, 'GPB2024NL002', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899528650754, NULL, NULL, 'GPB2024NL003', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899570593793, NULL, NULL, 'GPB2024NL004', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899612536834, NULL, NULL, 'GPC2024NL042', 'CNC钻攻加工中心', 'HD-T850 M80B 20,000rpm 配置', '江苏厚道数控科技有限公司', NULL, NULL, '2024-08-14', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899650285569, NULL, NULL, 'GPA2024NL017', '电子分析天平', '型号:LC-FA1204,品牌:力辰', '湖南力辰仪器科技有限公司', NULL, NULL, '2024-09-04', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899696422914, NULL, NULL, 'GPC2024NA046', '高精微量转盘注塑机', 'TYU-400.2R.SF.J', '杭州大禹机械有限公司', NULL, NULL, '2024-08-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899734171649, NULL, NULL, 'GPA2024NL018', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899776114689, NULL, NULL, 'GPA2024NL019', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899822252034, NULL, NULL, 'GPA2024NL020', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899868389378, NULL, NULL, 'GPA2024NL021', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899906138113, NULL, NULL, 'GPA2024NL022', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '2024.09.25已领走,等二维码替换编号'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899948081154, NULL, NULL, 'GPA2024NL023', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '???', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899990024193, NULL, NULL, 'GPA2024NL024', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '陈爱明2024.12.06已领走'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900036161538, NULL, NULL, 'GPA2024NL025', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '???', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900078104577, NULL, NULL, 'GPA2024NL026', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900115853313, NULL, NULL, 'GPA2024NL027', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900157796353, NULL, NULL, 'GPA2024NL028', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900195545089, NULL, NULL, 'GPA2024NL029', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900233293826, NULL, NULL, 'GPA2024NL030', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900275236866, NULL, NULL, 'GPA2024NL031', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900317179905, NULL, NULL, 'GPA2024NL032', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900363317250, NULL, NULL, 'GPA2024NL033', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900405260290, NULL, NULL, 'GPD2024NL112', '测试平台:大理石', '大理石平台: 大理石1600*600*150mm 平整度0.01', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2024-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单一大理石'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900451397634, NULL, NULL, 'GPD2024NL113', '测试平台:支撑柜体', '大理石平台:支架柜体: 1600*590*650mm(含福马轮', '上海皇闽铝业有限公司', NULL, NULL, '2024-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单大理石铝型材支持底座'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900497534978, NULL, NULL, 'GPD2024NL114', '高精度电动位移滑台', '三相步进电机UKSA200 控制器:MC6003P-2B', '北京卓立汉光仪器有限公司', NULL, NULL, '2024-08-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '北京卓立汉光仪器有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单一高精度滑台和MC6003主机控制器一套'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900539478018, NULL, NULL, 'GPA2024NL034', 'LVDT标定测试柜', 'LVDT标定测试柜800*600*1632mm 重型 承重150公斤', '上海蓄莹实业有限公司', NULL, NULL, '2024-08-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 'LVDT测试标定用,定制铝型材机柜'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900594003970, NULL, NULL, 'GPA2024NL035', '读数头+光栅尺', '1、读数头PTL-1-A-250G-26F-05BL-2M 2、光栅尺 GLA-1-A-', '长春禹衡光学有限公司', NULL, NULL, '2024-09-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '长春禹衡光学有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900631752706, NULL, NULL, 'GPC2024NA047', '标签打印机', 'GP-1134T', '杭州精睿电子商务有限公司', NULL, NULL, '2024-09-26', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '杭州精睿电子商务有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900682084354, NULL, NULL, 'GPC2024NA048', '气保焊机', 'NB-500E(配套5米枪、15米送丝机线)', '上海歙州实业发展有限公司', NULL, NULL, '2024-09-27', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900728221697, NULL, NULL, 'GPG2024NA083', '全自动空心线圈绕线整理摆盘自动化设备', '长1.55M*宽1.2M*1.8M', '苏州从正精密科技有限公司', NULL, NULL, '2024-08-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州从正精密科技有限公司', NULL, NULL, NULL, NULL, '安徽请购的自动化设备,用于8EA空心线圈自动化绕制下料摆盘使用。'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900770164738, NULL, NULL, 'GPC2024NL049', '激光调阻机', 'BNTZ-20XTL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2024-08-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '9700自动化改激光调阻机使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900812107777, NULL, NULL, 'GPC2024NL050', '激光调阻机', 'BNTZ-20XTL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2024-08-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '6M自动化改激光调阻机使用'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900858245121, NULL, NULL, 'GPA2024NL036', '光栅尺', '型号:ABA100-B-30C1', '无锡宁动光电科技有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡宁动光电科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900895993857, NULL, NULL, 'GPA2024NL037', '光栅尺', '型号:ABA100-B-30C1', '无锡宁动光电科技有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡宁动光电科技有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900933742593, NULL, NULL, 'GPA2024NL039', '不锈钢带绝对值光栅尺', 'QHJ-100型', '长春七海光电技术有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '长春七海光电技术有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900975685633, NULL, NULL, NULL, 'LVDT测试治具', '直线电机平台 NPS-L-UB1-05C-03台湾 +配件', '海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901017628674, NULL, NULL, 'GPC2024NL051', '附件袋包装机', '小型气动包装机搭配4头螺旋计数盘', '安溪轩藤机械设备有限公司', NULL, NULL, '2023-12-10', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '安溪轩藤机械设备有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901055377410, NULL, NULL, 'GPA2024NL038', '沙尘试验箱', 'JK-600-6X', '苏州江凯机械设备有限公司', NULL, NULL, '2024-10-10', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州江凯机械设备有限公司', NULL, NULL, NULL, NULL, 'DQM部,沙尘实验用,放3楼'); 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901097320449, NULL, NULL, 'GPA2024NH040', '便携式臭气浓度检测仪', 'POLFA,臭气强度检测量程:0-2000', '日本进口', NULL, NULL, '2023-08-07', NULL, '环保实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海积世实业发展有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901135069186, NULL, NULL, 'GPC2024NL052', '远方智能群脉冲设备', '远方EMS61000-4A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2024-09-30', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901177012226, NULL, NULL, 'GPA2024NL041', 'LVDT测试治具', '直线电机平台 NPS-L-UB1-05C-03台湾 +配件', '台湾', NULL, NULL, '2024-09-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901218955266, NULL, NULL, 'GPC2024NA053', '小型冲压机', '上海玉豹 1.5吨微电脑计数/可设置自动冲压', '台州玉豹机电有限公司', NULL, NULL, '2024-10-14', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '台州玉豹机电有限公司', NULL, NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901260898305, NULL, NULL, 'GPG2024NA084', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901307035649, NULL, NULL, 'GPG2024NA085', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901348978690, NULL, NULL, 'GPG2024NA086', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901390921730, NULL, NULL, 'GPC2024NL054', '强制对流型烘干机', '品牌Binder,型号FED115 宾德230V', '上海始恒仪器设备有限公司', NULL, NULL, '2024-11-15', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海始恒仪器设备有限公司', NULL, NULL, NULL, 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`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901449641985, NULL, NULL, '生产制造部', 'GPA2023NL070-077', '高精度传感器测试仪', 'ZTX-022-001', NULL, NULL, NULL, NULL, '甘海宾', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '检测设备(帐内)(传感)', NULL, NULL, NULL, NULL, 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '变更前状态', `after_change` char(1) CHARACTER SET utf8mb4 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) 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 (`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 (1892023859743035394, 1890217827130769409, '3', '1', '2025-02-19 09:30:04', 1, 100, 'df', 103, 1, '2025-02-19 09:30:15', 1, '2025-02-19 09:30:23', 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 (1892016155767083009, 1890217827130769409, 1, '2025-02-19', 1, 1, 100, 1889581563890200577, '08:58:58', '08:58:59', '08:59:04', '08:59:06', '08:59:01', 'ryy', NULL, 103, 1, '2025-02-19 08:59:38', 1, '2025-02-19 08:59:38', 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 (1892021734799577089, 1890217827130769409, NULL, '2025-02-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-02-19 09:21:48', 1, '2025-02-19 09:21:48', 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 (1892021858305052674, 1890217827189489665, NULL, '2025-02-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-02-19 09:22:18', 1, '2025-02-19 09:22:18', 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `type_code` varchar(10) CHARACTER SET utf8mb4 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_fault_know -- ---------------------------- DROP TABLE IF EXISTS `eims_fault_know`; CREATE TABLE `eims_fault_know` ( `id` bigint NOT NULL, `equ_id` bigint DEFAULT NULL, `equ_type` bigint DEFAULT NULL, `equ_part` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备部位(字典)', `fault_code` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '知识编码', `fault_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '故障类别(字典)', `fault_reason` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '故障原因(字典)', `req_desc` varchar(600) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修描述', `res_handle` varchar(600) 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_fault_know -- ---------------------------- BEGIN; INSERT INTO `eims_fault_know` (`id`, `equ_id`, `equ_type`, `equ_part`, `fault_code`, `fault_type`, `fault_reason`, `req_desc`, `res_handle`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902189087765708802, 1890217827130769409, NULL, '1', 'GZZS202503190003', '1', '1', '发规划局快乐', '估计快了; ', 103, 1, '2025-03-19 10:43:14', 1, '2025-03-19 10:43:14', NULL); INSERT INTO `eims_fault_know` (`id`, `equ_id`, `equ_type`, `equ_part`, `fault_code`, `fault_type`, `fault_reason`, `req_desc`, `res_handle`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902233456065204225, 1890217827130769409, NULL, '2', 'GZZS202503190004', '2', '2', '测试', '测试', 103, 1, '2025-03-19 13:39:32', 1, '2025-03-19 13:39:32', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_fixture -- ---------------------------- DROP TABLE IF EXISTS `eims_fixture`; CREATE TABLE `eims_fixture` ( `id` bigint NOT NULL, `fixture_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具编码', `fixture_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具名称', `fixture_type` bigint DEFAULT NULL COMMENT '治具(工具)类型', `fixture_desc` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具描述', `borrow_dept` bigint DEFAULT NULL COMMENT '借用部门', `borrow_user` bigint DEFAULT NULL COMMENT '借用人', `borrow_status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '借出状态(字典)', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态(字典)', `asset_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '资产编号', `model_no` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '型号', `spec_no` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '规格', `made_in` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '制造商', `purchase_date` date DEFAULT NULL COMMENT '采购日期', `deploy_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 '备注', `cur_borrow_id` bigint DEFAULT NULL COMMENT '当前借用记录id', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_fixture -- ---------------------------- BEGIN; INSERT INTO `eims_fixture` (`id`, `fixture_code`, `fixture_name`, `fixture_type`, `fixture_desc`, `borrow_dept`, `borrow_user`, `borrow_status`, `status`, `asset_no`, `model_no`, `spec_no`, `made_in`, `purchase_date`, `deploy_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `cur_borrow_id`) VALUES (1891360483990941697, '123456', '手动扳手2', 1891349685461688322, NULL, 100, 1889581563890200577, '0', '0', '123456', '123', '12', '12', '2025-02-17', '2025-02-17', 6, 103, 1, '2025-02-17 13:34:14', 1889581563890200577, '2025-02-20 13:45:19', NULL, 1892104974138871809); INSERT INTO `eims_fixture` (`id`, `fixture_code`, `fixture_name`, `fixture_type`, `fixture_desc`, `borrow_dept`, `borrow_user`, `borrow_status`, `status`, `asset_no`, `model_no`, `spec_no`, `made_in`, `purchase_date`, `deploy_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `cur_borrow_id`) VALUES (1891365808617848833, 'qwertyu', '电动扳手', 1891349784564703233, NULL, 100, 1889581563890200577, '1', '0', '123456', NULL, NULL, NULL, '2025-02-17', '2025-02-17', NULL, 103, 1, '2025-02-01 13:55:23', 1889581563890200577, '2025-02-20 13:45:44', NULL, 1892450543547351042); COMMIT; -- ---------------------------- -- Table structure for eims_fixture_borrow -- ---------------------------- DROP TABLE IF EXISTS `eims_fixture_borrow`; CREATE TABLE `eims_fixture_borrow` ( `id` bigint NOT NULL, `fixture_id` bigint NOT NULL COMMENT '借用工具id', `fixture_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '借用工具名称', `borrow_dept` bigint DEFAULT NULL COMMENT '借用部门', `borrow_user` bigint DEFAULT NULL COMMENT '借用人', `agent_user` bigint DEFAULT NULL COMMENT '经办人', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '借用记录状态(字典)', `borrow_time` datetime DEFAULT NULL COMMENT '借用时间', `plan_return_time` datetime DEFAULT NULL COMMENT '预计归还时间', `return_time` datetime DEFAULT NULL COMMENT '归还时间', `borrow_reason` varchar(200) 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_fixture_borrow -- ---------------------------- BEGIN; INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892101960258818049, 1891360483990941697, '手动扳手2', 103, 1, 1889581665270722561, '1', '2025-02-19 14:40:28', '2025-02-19 14:40:32', '2025-02-19 14:40:34', 'fghjk', 103, 1, '2025-02-19 14:40:36', 1, '2025-02-19 14:41:25', NULL); INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892103064619061250, 1891360483990941697, '手动扳手2', 103, 1, 1889581724095836162, '1', '2025-02-19 14:44:49', '2025-02-19 14:44:57', '2025-02-19 14:45:22', 'fg345678', 103, 1, '2025-02-19 14:44:59', 1, '2025-02-19 14:45:24', NULL); INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892104974138871809, 1891360483990941697, '手动扳手2', 100, 1889581563890200577, 1889581665270722561, '1', '2025-02-19 14:52:26', '2025-02-19 14:52:31', '2025-02-20 13:45:15', '法国会尽快', 100, 1889581563890200577, '2025-02-19 14:52:34', 1889581563890200577, '2025-02-20 13:45:19', NULL); INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892108238951550978, 1891365808617848833, '电动扳手', 103, 1, 1889581724095836162, '1', '2025-02-19 15:05:27', '2025-02-19 15:05:31', '2025-02-19 15:09:08', 'iufghj', 103, 1, '2025-02-19 15:05:32', 1, '2025-02-19 15:09:26', NULL); INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892450543547351042, 1891365808617848833, '电动扳手', 100, 1889581563890200577, 1889581724095836162, '0', '2025-02-20 13:45:36', '2025-02-21 13:45:40', NULL, '规划局看了看巨化股份代发给', 100, 1889581563890200577, '2025-02-20 13:45:44', 1889581563890200577, '2025-02-20 13:45:44', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_fixture_type -- ---------------------------- DROP TABLE IF EXISTS `eims_fixture_type`; CREATE TABLE `eims_fixture_type` ( `id` bigint NOT NULL, `type_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `type_code` varchar(10) CHARACTER SET utf8mb4 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 (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_fixture_type -- ---------------------------- BEGIN; INSERT INTO `eims_fixture_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 (1891346631324704769, '工具', 'tool', 0, 1, 'M', '#', '0', 103, 1, '2025-02-17 12:39:11', 1, '2025-02-17 12:39:11', ''); INSERT INTO `eims_fixture_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 (1891346744369586178, '治具', 'jig', 0, 2, 'M', '#', '0', 103, 1, '2025-02-17 12:39:38', 1, '2025-02-17 12:58:24', ''); INSERT INTO `eims_fixture_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 (1891348168285462529, '定位治具', 'dw', 1891346744369586178, 1, 'C', '#', '0', 103, 1, '2025-02-17 12:45:18', 1, '2025-02-17 12:46:22', ''); INSERT INTO `eims_fixture_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 (1891348349345177601, '焊接治具', 'hj', 1891346744369586178, 2, 'C', '#', '0', 103, 1, '2025-02-17 12:46:01', 1, '2025-02-17 12:47:10', ''); INSERT INTO `eims_fixture_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 (1891348417930436609, '测试治具', 'cs', 1891346744369586178, 3, 'C', '#', '0', 103, 1, '2025-02-17 12:46:17', 1, '2025-02-17 12:49:46', ''); INSERT INTO `eims_fixture_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 (1891348560738099201, '校准治具', 'jz', 1891346744369586178, 4, 'C', '#', '0', 103, 1, '2025-02-17 12:46:51', 1, '2025-02-17 12:49:54', ''); INSERT INTO `eims_fixture_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 (1891349577999425537, '组装治具', 'zz', 1891346744369586178, 5, 'C', '#', '0', 103, 1, '2025-02-17 12:50:54', 1, '2025-02-17 12:50:54', ''); INSERT INTO `eims_fixture_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 (1891349685461688322, '手动工具', 'sd', 1891346631324704769, 1, 'M', '#', '0', 103, 1, '2025-02-17 12:51:19', 1, '2025-02-17 12:51:19', ''); INSERT INTO `eims_fixture_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 (1891349784564703233, '电动工具', 'dd', 1891346631324704769, 2, 'M', '#', '0', 103, 1, '2025-02-17 12:51:43', 1, '2025-02-17 12:51:43', ''); INSERT INTO `eims_fixture_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 (1891349987325747202, '检测工具', 'jc', 1891346631324704769, 3, 'M', '#', '0', 103, 1, '2025-02-17 12:52:31', 1, '2025-02-17 12:52:31', ''); INSERT INTO `eims_fixture_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 (1891350059899789314, '专用工具', 'zy', 1891346631324704769, 4, 'M', '#', '0', 103, 1, '2025-02-17 12:52:49', 1, '2025-02-17 12:53:01', ''); INSERT INTO `eims_fixture_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 (1891350204989153281, '清洁工具', 'qj', 1891346631324704769, 5, 'M', '#', '0', 103, 1, '2025-02-17 12:53:23', 1, '2025-02-17 12:53:23', ''); COMMIT; -- ---------------------------- -- Table structure for eims_inspect_plan -- ---------------------------- DROP TABLE IF EXISTS `eims_inspect_plan`; CREATE TABLE `eims_inspect_plan` ( `id` bigint NOT NULL, `equ_id` bigint DEFAULT NULL COMMENT '设备id\n', `insp_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检类型(字典)', `insp_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检项名称', `insp_no` int DEFAULT NULL COMMENT '点检项编号', `insp_desc` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检说明', `insp_cycle` int DEFAULT NULL COMMENT '点检周期', `insp_cycle_unit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检周期单位(字典)', `insp_rule` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检规则(字典)保养时间计算:1-按周期 2-按上次保养时间', `insp_user` bigint DEFAULT NULL COMMENT '点检人', `insp_dept` bigint DEFAULT NULL COMMENT '点检部门', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态(字典) 0-启用 1-禁用', `insp_first_time` date DEFAULT NULL COMMENT '首次执行时间', `insp_last_time` date DEFAULT NULL COMMENT '上次执行时间', `insp_next_time` date 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_inspect_plan -- ---------------------------- BEGIN; INSERT INTO `eims_inspect_plan` (`id`, `equ_id`, `insp_type`, `insp_name`, `insp_no`, `insp_desc`, `insp_cycle`, `insp_cycle_unit`, `insp_rule`, `insp_user`, `insp_dept`, `status`, `insp_first_time`, `insp_last_time`, `insp_next_time`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899768028726345729, 1890217827189489665, '1', 'dfghjklkjhgvc', NULL, 'xcvbjkv', 1, '1', '0', 1889581563890200577, 100, '0', '2025-03-13', '2025-03-19', '2025-03-20', 103, 1, '2025-03-12 18:22:49', 1, '2025-03-19 14:36:15', NULL); INSERT INTO `eims_inspect_plan` (`id`, `equ_id`, `insp_type`, `insp_name`, `insp_no`, `insp_desc`, `insp_cycle`, `insp_cycle_unit`, `insp_rule`, `insp_user`, `insp_dept`, `status`, `insp_first_time`, `insp_last_time`, `insp_next_time`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902309616430170113, 1890217827130769409, '1', '123', NULL, '111', 10, '1', '0', 1889581724095836162, 100, '0', NULL, NULL, '2025-03-20', 103, 1, '2025-03-19 18:42:10', 1, '2025-03-19 18:42:10', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_inspect_record -- ---------------------------- DROP TABLE IF EXISTS `eims_inspect_record`; CREATE TABLE `eims_inspect_record` ( `id` bigint NOT NULL, `equ_id` bigint NOT NULL COMMENT '设备di', `insp_name` varchar(200) COLLATE utf8mb4_general_ci NOT NULL COMMENT '点检名称', `insp_desc` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检描述', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0', `insp_code` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检编码', `insp_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检类型', `record_mode` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '值记录方式(字典)', `reference_value` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '参考值', `upper_limit` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '上限', `low_limit` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '下限', `check_value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '检查值', `insp_result` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '点检结果(字典)', `insp_time` datetime DEFAULT NULL COMMENT '点检时间', `plan_time` date DEFAULT NULL COMMENT '计划点检日期', `insp_user` bigint DEFAULT NULL, `insp_dept` bigint DEFAULT NULL, `verify_user` bigint DEFAULT NULL COMMENT '验证人', `plan_id` bigint DEFAULT NULL COMMENT '计划id', `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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_inspect_record -- ---------------------------- BEGIN; INSERT INTO `eims_inspect_record` (`id`, `equ_id`, `insp_name`, `insp_desc`, `status`, `insp_code`, `insp_type`, `record_mode`, `reference_value`, `upper_limit`, `low_limit`, `check_value`, `insp_result`, `insp_time`, `plan_time`, `insp_user`, `insp_dept`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902245777072275458, 1890217827189489665, 'dfghjklkjhgvc', 'xcvbjkv', '0', 'DJZD202503190001', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-03-18', 1889581563890200577, 100, NULL, 1899768028726345729, 103, 1, '2025-03-12 18:22:49', 1, '2025-03-12 18:22:49', NULL); INSERT INTO `eims_inspect_record` (`id`, `equ_id`, `insp_name`, `insp_desc`, `status`, `insp_code`, `insp_type`, `record_mode`, `reference_value`, `upper_limit`, `low_limit`, `check_value`, `insp_result`, `insp_time`, `plan_time`, `insp_user`, `insp_dept`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902247726584774658, 1890217827189489665, 'dfghjklkjhgvc', NULL, '0', 'DJSD202503190001', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-03-19', 1889581563890200577, 100, NULL, 1899768028726345729, 103, 1, '2025-03-19 14:36:15', 1, '2025-03-19 14:36:15', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_inspect_st -- ---------------------------- DROP TABLE IF EXISTS `eims_inspect_st`; CREATE TABLE `eims_inspect_st` ( `id` bigint NOT NULL, `title` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL, `equ_id` bigint DEFAULT NULL, `plan_time` date DEFAULT NULL, `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态', `insp_user` bigint DEFAULT NULL COMMENT '保养人', `verify_user` bigint DEFAULT NULL COMMENT '稽查人', `verify_time` datetime DEFAULT NULL COMMENT '稽查日期', `special_note` varchar(500) 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 '备注', `uni_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '唯一id(触发器使用)', PRIMARY KEY (`id`,`uni_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_inspect_st -- ---------------------------- BEGIN; INSERT INTO `eims_inspect_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `insp_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545610, '202503老化台', 1890217827189489665, '2025-03-12', '0', NULL, 1889581563890200577, NULL, '1111', 103, 1, '2025-03-14 10:52:38', 1, '2025-03-14 11:02:57', NULL, '202503_1890217827189489665'); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点单号', `inventory_name` varchar(50) CHARACTER SET utf8mb4 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) 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 '' 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 (1898963707783942145, 'PD1234567', '盘点测试', '1,11,2,21,22', '0,1,2,3,4,5', 100, 1, '2025-03-10', '2025-03-10', '0', 103, 1, '2025-03-10 13:06:44', 1, '2025-03-10 13:06:44', ''); 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 (1898963707909771265, 1898963707783942145, 1890217827130769409, '0', 103, 1, '2025-03-10 13:06:44', 1, '2025-03-10 13:06:44', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_maint_order -- ---------------------------- DROP TABLE IF EXISTS `eims_maint_order`; CREATE TABLE `eims_maint_order` ( `id` bigint NOT NULL, `equ_id` bigint DEFAULT NULL, `maint_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '计划表冗余-保养类型(字典)', `maint_cycle` int DEFAULT NULL COMMENT '计划表冗余-保养周期', `maint_cycle_unit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '计划表冗余-保养周期单位(字典)', `maint_rule` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '计划表冗余- 保养规则(字典)保养时间计算:1-按周期 2-按上次保养时间', `maint_user` bigint DEFAULT NULL COMMENT '计划表冗余-保养人', `maint_dept` bigint DEFAULT NULL COMMENT '计划表冗余-保养部门', `maint_code` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养单号', `maint_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0', `plan_time` date DEFAULT NULL COMMENT '保养计划时间', `start_time` datetime DEFAULT NULL COMMENT '保养开始时间', `end_time` datetime DEFAULT NULL COMMENT '保养结束时间', `verify_user` bigint DEFAULT NULL COMMENT '验证人', `plan_id` bigint DEFAULT NULL COMMENT '计划id', `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 '备注', `maint_desc` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '工作描述', PRIMARY KEY (`id`), UNIQUE KEY `maint_order_code_uni` (`maint_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_maint_order -- ---------------------------- BEGIN; INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900054047297986561, 1890217827130769409, '1', NULL, NULL, NULL, 1889581665270722561, 100, 'BYYJ202503130002', '坏了', '0', '2025-03-01', NULL, NULL, NULL, 1899662162347008002, 103, 1, '2025-03-13 13:19:21', 1, '2025-03-13 13:19:21', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900054217599311874, 1890217827130769409, '1', 10, '1', '0', 1889581665270722561, 100, 'BYZD202503130001', '坏了', '0', '2025-03-11', NULL, NULL, NULL, 1899662162347008002, NULL, NULL, '2025-03-13 13:20:01', NULL, '2025-03-13 13:20:01', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900096579249983489, 1890217827189489665, '1', NULL, NULL, NULL, 1889581665270722561, 100, 'BYYJ202503130004', '测试', '0', '2025-04-01', NULL, NULL, NULL, 1900096547331330049, 103, 1, '2025-03-13 16:08:21', 1, '2025-03-13 16:08:21', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900099625099022338, 1890217827189489665, '1', NULL, NULL, NULL, 1889581665270722561, 100, 'BYYJ202503130005', '测试', '0', '2025-05-01', NULL, NULL, NULL, 1900096547331330049, 103, 1, '2025-03-13 16:20:27', 1, '2025-03-13 17:01:51', NULL, 'we'); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900355478888673282, 1890217827260792833, '1', NULL, NULL, NULL, 1889581563890200577, 100, 'BYYJ202503140004', '的润滑剂考虑', '0', '2025-06-01', NULL, NULL, NULL, 1900352603433234433, 103, 1, '2025-03-14 09:17:08', 1, '2025-03-14 09:17:08', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900412659837018113, 1890217827260792833, '1', NULL, NULL, NULL, 1889581563890200577, 100, 'BYYJ202503140006', '的润滑剂考虑', '0', '2025-07-06', NULL, NULL, NULL, 1900352603433234433, 103, 1, '2025-03-14 13:04:21', 1, '2025-03-14 13:17:00', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900417832059764738, 1890217827260792833, '1', NULL, NULL, NULL, 1889581563890200577, 100, 'BYYJ202503140007', '的润滑剂考虑', '0', '2025-07-17', NULL, NULL, NULL, 1900352603433234433, 103, 1, '2025-03-14 13:24:54', 1, '2025-03-14 13:24:54', NULL, NULL); INSERT INTO `eims_maint_order` (`id`, `equ_id`, `maint_type`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `maint_code`, `maint_name`, `status`, `plan_time`, `start_time`, `end_time`, `verify_user`, `plan_id`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `maint_desc`) VALUES (1900417908962328577, 1890217827260792833, '1', NULL, NULL, NULL, 1889581563890200577, 100, 'BYYJ202503140008', '的润滑剂考虑', '3', '2025-07-25', '2025-03-14 13:31:18', '2025-03-14 13:31:23', 1, 1900352603433234433, 103, 1, '2025-03-14 13:25:12', 1, '2025-03-14 13:31:30', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for eims_maint_orditm -- ---------------------------- DROP TABLE IF EXISTS `eims_maint_orditm`; CREATE TABLE `eims_maint_orditm` ( `id` bigint NOT NULL, `order_id` bigint DEFAULT NULL COMMENT '工单id', `equ_id` bigint DEFAULT NULL COMMENT '设备id', `itm_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项目名称', `itm_action` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项目操作标准', `itm_user` bigint DEFAULT NULL COMMENT '保养操作用户', `itm_time` datetime DEFAULT NULL COMMENT '保养时间', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_maint_orditm -- ---------------------------- BEGIN; INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898942839464914946, 1898942839083233282, 1890217827189489665, '测试测试2', '测试测试2', 1889581563890200577, '2025-03-10 14:08:30', '1', NULL, NULL, '2025-03-10 11:43:48', 1, '2025-03-10 16:05:23', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898942839498469378, 1898942839083233282, 1890217827189489665, '测试测试2', '测试测试2', 1889581563890200577, '2025-03-10 16:00:47', '1', NULL, NULL, '2025-03-10 11:43:48', 1, '2025-03-10 16:00:47', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898942839515246593, 1898942839083233282, 1890217827189489665, '测试测试2', '测试测试2', 1889581563890200577, '2025-03-10 16:01:03', '1', NULL, NULL, '2025-03-10 11:43:48', 1, '2025-03-10 16:01:03', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898942839532023809, 1898942839083233282, 1890217827189489665, '测试测试2', '测试测试2', 1889581563890200577, '2025-03-10 16:01:10', '1', NULL, NULL, '2025-03-10 11:43:48', 1, '2025-03-10 16:02:43', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899010187065348098, 1899010186964684802, 1890217827260792833, 'LCR数字电桥2', 'LCR数字电桥2', 1889581724095836162, '2025-03-10 16:11:54', '1', NULL, NULL, '2025-03-10 16:11:25', 1, '2025-03-10 16:23:34', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899010187082125313, 1899010186964684802, 1890217827260792833, 'LCR数字电桥2', 'LCR数字电桥2', 1889581724095836162, '2025-03-10 16:12:05', '1', NULL, NULL, '2025-03-10 16:11:25', 1, '2025-03-10 16:12:05', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899014580766560257, 1899014580720422913, 1890217827260792833, 'LCR数字电桥1', 'LCR数字电桥1', 1889581724095836162, NULL, '0', 103, 1, '2025-03-10 16:28:53', 1, '2025-03-10 16:28:53', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899014580800114689, 1899014580720422913, 1890217827260792833, 'LCR数字电桥2', 'LCR数字电桥2', 1889581724095836162, NULL, '0', 103, 1, '2025-03-10 16:28:53', 1, '2025-03-10 16:28:53', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899016462394249218, 1899016462343917569, 1890217827260792833, 'LCR数字电桥1', 'LCR数字电桥1', 1889581563890200577, NULL, '0', 103, 1, '2025-03-10 16:36:21', 1, '2025-03-10 16:36:21', NULL); INSERT INTO `eims_maint_orditm` (`id`, `order_id`, `equ_id`, `itm_name`, `itm_action`, `itm_user`, `itm_time`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899016462415220738, 1899016462343917569, 1890217827260792833, 'LCR数字电桥2', 'LCR数字电桥2', 1889581563890200577, NULL, '0', 103, 1, '2025-03-10 16:36:21', 1, '2025-03-10 16:36:21', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_maint_plan -- ---------------------------- DROP TABLE IF EXISTS `eims_maint_plan`; CREATE TABLE `eims_maint_plan` ( `id` bigint NOT NULL, `equ_id` bigint DEFAULT NULL COMMENT '设备id\n', `maint_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养类型(字典)', `maint_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项名称', `maint_no` int DEFAULT NULL COMMENT '保养项编号', `maint_desc` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项说明', `maint_cycle` int DEFAULT NULL COMMENT '保养周期', `maint_cycle_unit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养周期单位(字典)', `maint_rule` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养规则(字典)保养时间计算:1-按周期 2-按上次保养时间', `maint_user` bigint DEFAULT NULL COMMENT '保养人', `maint_dept` bigint DEFAULT NULL COMMENT '保养部门', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态(字典) 0-启用 1-禁用', `maint_first_time` date DEFAULT NULL COMMENT '首次执行时间', `maint_last_time` date DEFAULT NULL COMMENT '上次执行时间', `maint_next_time` date 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 '备注', `last_order_date` date DEFAULT NULL COMMENT '上次生成工单时间', PRIMARY KEY (`id`), UNIQUE KEY `maint_plan_equ` (`equ_id`) USING BTREE COMMENT '每台设备只能添加一个计划' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_maint_plan -- ---------------------------- BEGIN; INSERT INTO `eims_maint_plan` (`id`, `equ_id`, `maint_type`, `maint_name`, `maint_no`, `maint_desc`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `status`, `maint_first_time`, `maint_last_time`, `maint_next_time`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `last_order_date`) VALUES (1899662162347008002, 1890217827130769409, '1', '坏了', NULL, NULL, 10, '1', '0', 1889581665270722561, 100, '0', '2025-03-01', '2025-03-21', '2025-03-31', 103, 1, '2025-03-12 11:22:08', 1, '2025-03-14 09:14:23', NULL, '2025-03-13'); INSERT INTO `eims_maint_plan` (`id`, `equ_id`, `maint_type`, `maint_name`, `maint_no`, `maint_desc`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `status`, `maint_first_time`, `maint_last_time`, `maint_next_time`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `last_order_date`) VALUES (1900096547331330049, 1890217827189489665, '1', '测试', NULL, NULL, 10, '1', '0', 1889581665270722561, 100, '0', '2025-04-01', '2025-05-01', '2025-05-11', 103, 1, '2025-03-13 16:08:14', 1, '2025-03-13 16:20:27', NULL, NULL); INSERT INTO `eims_maint_plan` (`id`, `equ_id`, `maint_type`, `maint_name`, `maint_no`, `maint_desc`, `maint_cycle`, `maint_cycle_unit`, `maint_rule`, `maint_user`, `maint_dept`, `status`, `maint_first_time`, `maint_last_time`, `maint_next_time`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `last_order_date`) VALUES (1900352603433234433, 1890217827260792833, '1', '的润滑剂考虑', NULL, NULL, 6, '1', '0', 1889581563890200577, 100, '0', '2025-03-14', '2025-04-13', '2025-04-19', 103, 1, '2025-03-14 09:05:42', 1, '2025-03-14 13:25:12', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for eims_maint_st -- ---------------------------- DROP TABLE IF EXISTS `eims_maint_st`; CREATE TABLE `eims_maint_st` ( `id` bigint NOT NULL, `title` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `equ_id` bigint DEFAULT NULL, `plan_time` date DEFAULT NULL, `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态', `maint_user` bigint DEFAULT NULL COMMENT '保养人', `verify_user` bigint DEFAULT NULL COMMENT '稽查人', `verify_time` datetime DEFAULT NULL COMMENT '稽查日期', `special_note` varchar(500) 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 '备注', `uni_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '唯一id(触发器使用)', PRIMARY KEY (`id`,`uni_id`) USING BTREE, UNIQUE KEY `unique_planTime_equId` (`plan_time`,`equ_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_maint_st -- ---------------------------- BEGIN; INSERT INTO `eims_maint_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `maint_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545603, '202503电子镇流器节能灯输入特性分析仪', 1890217827130769409, '2025-03-01', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '202503_1890217827130769409'); INSERT INTO `eims_maint_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `maint_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545604, '202504老化台', 1890217827189489665, '2025-04-01', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '202504_1890217827189489665'); INSERT INTO `eims_maint_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `maint_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545605, '202505老化台', 1890217827189489665, '2025-05-01', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '202505_1890217827189489665'); INSERT INTO `eims_maint_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `maint_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545608, '202506LCR数字电桥', 1890217827260792833, '2025-06-01', '0', NULL, NULL, NULL, NULL, 103, 1, '2025-03-14 09:17:07', NULL, NULL, NULL, '202506_1890217827260792833'); INSERT INTO `eims_maint_st` (`id`, `title`, `equ_id`, `plan_time`, `status`, `maint_user`, `verify_user`, `verify_time`, `special_note`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `uni_id`) VALUES (101276215515545611, '202507LCR数字电桥', 1890217827260792833, '2025-07-07', '0', NULL, NULL, NULL, NULL, 103, 1, '2025-03-14 13:04:20', NULL, NULL, NULL, '202507_1890217827260792833'); COMMIT; -- ---------------------------- -- Table structure for eims_maint_stand -- ---------------------------- DROP TABLE IF EXISTS `eims_maint_stand`; CREATE TABLE `eims_maint_stand` ( `id` bigint NOT NULL, `equ_id` bigint DEFAULT NULL COMMENT '设备id', `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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备名称\n', `model_no` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备型号', `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '保养项目名称', `stand` varchar(200) 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`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_maint_stand -- ---------------------------- BEGIN; INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898936343133908991, 1890217827189489665, NULL, NULL, 'GPA2002G005', '老化台', '/', '测试测试2', '测试测试2', 103, 1, '2025-03-10 11:17:59', 1, '2025-03-10 11:17:59', NULL); INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898936343133908992, 1890217827189489665, NULL, NULL, 'GPA2002G005', '老化台', '/', '测试测试3', '测试测试3', 103, 1, '2025-03-10 11:17:59', 1, '2025-03-10 11:17:59', NULL); INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898936343133908993, 1890217827189489665, NULL, NULL, 'GPA2002G005', '老化台', '/', '测试测试4', '测试测试4', 103, 1, '2025-03-10 11:17:59', 1, '2025-03-10 11:17:59', NULL); INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1898936343133908994, 1890217827189489665, NULL, NULL, 'GPA2002G005', '老化台', '/', '测试测试1', '测试测试1', 103, 1, '2025-03-10 11:17:59', 1, '2025-03-10 11:17:59', NULL); INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899009634516127746, 1890217827260792833, NULL, NULL, 'GPA2005H027', 'LCR数字电桥', 'HF2810', 'LCR数字电桥1', 'LCR数字电桥1', 103, 1, '2025-03-10 16:09:13', 1, '2025-03-10 16:09:13', NULL); INSERT INTO `eims_maint_stand` (`id`, `equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `name`, `stand`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899009688320659458, 1890217827260792833, NULL, NULL, 'GPA2005H027', 'LCR数字电桥', 'HF2810', 'LCR数字电桥2', 'LCR数字电桥2', 103, 1, '2025-03-10 16:09:26', 1, '2025-03-10 16:09:26', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_repair_fb -- ---------------------------- DROP TABLE IF EXISTS `eims_repair_fb`; CREATE TABLE `eims_repair_fb` ( `id` bigint NOT NULL, `res_id` bigint DEFAULT NULL COMMENT '维修工单id\n', `res_code` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修工单code\n', `fb_result` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '反馈结果', `fb_user` bigint DEFAULT NULL COMMENT '反馈人', `fb_dept` bigint DEFAULT NULL COMMENT '反馈人部门', `fb_time` datetime DEFAULT NULL COMMENT '反馈时间', `repair_timeliness` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修及时性(字典)', `service_attitude` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '服务态度', `repair_ss` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修现场6s', `repair_satisfaction` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修满意度', `suggestions` varchar(200) 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`), UNIQUE KEY `res_id_uni` (`res_id`), CONSTRAINT `fb_del` FOREIGN KEY (`res_id`) REFERENCES `eims_repair_res` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_repair_fb -- ---------------------------- BEGIN; INSERT INTO `eims_repair_fb` (`id`, `res_id`, `res_code`, `fb_result`, `fb_user`, `fb_dept`, `fb_time`, `repair_timeliness`, `service_attitude`, `repair_ss`, `repair_satisfaction`, `suggestions`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896386025134993409, 1895349522965901314, 'WXD202502280003', '撒娇娇东方今典不放假不打击发吧较大办法较大笔记法编辑的办法几把的绝大部分感激不尽电饭锅对吧飞机不打击不定积分毕竟大部分进步较大防爆电机部分酒店', 1889581563890200577, 100, '2025-03-03 10:19:01', '', '5', '5', '5', 'd\'d\'s\'d', 103, 1, '2025-03-03 10:23:56', 1, '2025-03-03 13:54:04', NULL); INSERT INTO `eims_repair_fb` (`id`, `res_id`, `res_code`, `fb_result`, `fb_user`, `fb_dept`, `fb_time`, `repair_timeliness`, `service_attitude`, `repair_ss`, `repair_satisfaction`, `suggestions`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896437434475851778, 1895296244676780034, 'WXD202502280001', '规划局快乐', 1, 103, '2025-03-03 13:48:11', '', '1', '5', '4', '发规划局快乐', 103, 1, '2025-03-03 13:48:13', 1, '2025-03-03 13:48:13', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_repair_record -- ---------------------------- DROP TABLE IF EXISTS `eims_repair_record`; CREATE TABLE `eims_repair_record` ( `id` bigint NOT NULL, `req_id` bigint DEFAULT NULL COMMENT '报修单id', `res_id` bigint DEFAULT NULL COMMENT '维修单id', `handle_time` datetime DEFAULT NULL COMMENT '处理时间', `opera_user` bigint DEFAULT NULL COMMENT '操作用户', `opera` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '操作(字典)', `opera_result` varchar(100) 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`) USING BTREE, KEY `res_id_sort` (`res_id`), CONSTRAINT `record_del` FOREIGN KEY (`res_id`) REFERENCES `eims_repair_res` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_repair_record -- ---------------------------- BEGIN; INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894993936550129665, 1894993936386551809, NULL, '2025-02-27 14:12:16', 1, '1', '新增,生成报修单', 103, 1, '2025-02-27 14:12:16', 1, '2025-02-27 14:12:16', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895287406577815553, 1895287406519095297, 1895296244676780034, '2025-02-28 09:38:25', 1, '1', '生成报修单', 103, 1, '2025-02-28 09:38:25', 1, '2025-02-28 10:13:32', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895296245062656002, 1895287406519095297, 1895296244676780034, '2025-02-28 10:13:32', 1, '2', '生成维修工单', 103, 1, '2025-02-28 10:13:32', 1, '2025-02-28 10:13:32', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895301666452189185, 1895287406519095297, 1895296244676780034, '2025-02-28 10:35:05', NULL, '3', '开始维修', 103, 1, '2025-02-28 10:35:05', 1, '2025-02-28 10:35:05', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895302533775536129, 1895287406519095297, 1895296244676780034, '2025-02-28 10:38:32', 1, '4', '完成维修工单', 103, 1, '2025-02-28 10:38:32', 1, '2025-02-28 10:38:32', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895305451039797250, 1895287406519095298, 1895305450813304833, '2025-02-28 10:50:07', 1, '2', '生成维修工单', 103, 1, '2025-02-28 10:50:07', 1, '2025-02-28 10:50:07', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349326731194370, 1895349326689251329, 1895349522965901314, '2025-02-28 13:44:28', 1, '1', '生成报修单', 103, 1, '2025-02-28 13:44:28', 1, '2025-02-28 13:45:15', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349490728480770, 1895349490514571266, 1895349523402108929, '2025-02-28 13:45:07', 1, '1', '生成报修单', 103, 1, '2025-02-28 13:45:07', 1, '2025-02-28 13:45:15', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349523259502593, 1895349326689251329, 1895349522965901314, '2025-02-28 13:45:15', 1, '2', '生成维修工单', 103, 1, '2025-02-28 13:45:15', 1, '2025-02-28 13:45:15', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349523930591233, 1895349490514571266, 1895349523402108929, '2025-02-28 13:45:15', 1, '2', '生成维修工单', 103, 1, '2025-02-28 13:45:15', 1, '2025-02-28 13:45:15', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895353358484942850, 1895349326689251329, 1895349522965901314, '2025-02-28 14:00:29', 1889581724095836162, '3', '开始维修', 100, 1889581724095836162, '2025-02-28 14:00:29', 1889581724095836162, '2025-02-28 14:00:29', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895353562244231169, 1895349326689251329, 1895349522965901314, '2025-02-28 14:01:18', 1889581724095836162, '4', '完成维修工单', 100, 1889581724095836162, '2025-02-28 14:01:18', 1889581724095836162, '2025-02-28 14:01:18', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896835506320830465, 1896835506257915905, 1896835549241143298, '2025-03-04 16:10:01', 1, '1', '生成报修单', 103, 1, '2025-03-04 16:10:01', 1, '2025-03-04 16:10:11', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896835549534744577, 1896835506257915905, 1896835549241143298, '2025-03-04 16:10:11', 1, '2', '生成维修工单', 103, 1, '2025-03-04 16:10:11', 1, '2025-03-04 16:10:11', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896835615607615490, 1896835506257915905, 1896835549241143298, '2025-03-04 16:10:27', 1, '3', '开始维修', 103, 1, '2025-03-04 16:10:27', 1, '2025-03-04 16:10:27', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897178742226747394, 1895287406519095298, 1895305450813304833, '2025-03-05 14:53:55', 1, '3', '开始维修', 103, 1, '2025-03-05 14:53:55', 1, '2025-03-05 14:53:55', NULL); INSERT INTO `eims_repair_record` (`id`, `req_id`, `res_id`, `handle_time`, `opera_user`, `opera`, `opera_result`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897178908518318082, 1895287406519095298, 1895305450813304833, '2025-03-05 14:54:34', 1, '4', '完成维修工单', 103, 1, '2025-03-05 14:54:34', 1, '2025-03-05 14:54:34', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_repair_req -- ---------------------------- DROP TABLE IF EXISTS `eims_repair_req`; CREATE TABLE `eims_repair_req` ( `id` bigint NOT NULL COMMENT '报修id', `code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修单号', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修状态', `occ_time` datetime DEFAULT NULL COMMENT '发生时间', `req_time` datetime DEFAULT NULL COMMENT '报修时间', `req_dept` bigint DEFAULT NULL COMMENT '报修人部门', `req_user` bigint DEFAULT NULL COMMENT '报修人', `req_desc` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修描述', `urgency_level` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '紧急程度', `fault_picture` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '故障图片', `req_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修类型', `equ_id` bigint DEFAULT NULL COMMENT '设备id', `fixture_id` bigint DEFAULT NULL COMMENT '工具id', `repair_id` bigint DEFAULT NULL COMMENT '维修单id', `repair_dept` bigint DEFAULT NULL COMMENT '维修人部门', `repair_user` bigint DEFAULT NULL COMMENT '维修人', `fault_type` 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`) USING BTREE, UNIQUE KEY `repair_id` (`repair_id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_repair_req -- ---------------------------- BEGIN; INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895287406519095297, 'BXD202502280001', '3', '2025-02-28 09:38:19', '2025-02-28 09:37:48', 103, 1, '法国灰', '1', NULL, '1', 1890217827130769409, NULL, 1895296244676780034, NULL, NULL, '1', 103, 1, '2025-02-28 09:38:25', 1, '2025-02-28 10:38:32', NULL); INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895287406519095298, 'BXD202502280002', '3', '2025-02-28 09:38:19', '2025-02-28 09:37:48', 103, 1, '法国灰', '1', NULL, '1', 1890217827130769409, NULL, 1895305450813304833, NULL, NULL, '1', 103, 1, '2025-02-28 09:38:25', 1, '2025-03-05 14:54:34', NULL); INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349326689251329, 'BXD202502280003', '3', '2025-02-28 13:44:00', '2025-02-28 13:03:43', 103, 1, '地方规划局快乐', '1', NULL, '2', NULL, 1891365808617848833, 1895349522965901314, NULL, NULL, '1', 103, 1, '2025-02-28 13:44:28', 1889581724095836162, '2025-02-28 14:01:18', NULL); INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895349490514571266, 'BXD202502280004', '1', '2025-02-28 13:44:59', '2025-02-28 13:03:43', 103, 1, '规划局快乐', '1', NULL, '1', 1890217827189489665, NULL, 1895349523402108929, NULL, NULL, '1', 103, 1, '2025-02-28 13:45:07', 1, '2025-02-28 13:45:15', NULL); INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896835506257915905, 'BXD202503040001', '2', '2025-03-04 16:09:55', '2025-03-04 16:08:04', 103, 1, '东风', '1', NULL, '1', 1890217827260792833, NULL, 1896835549241143298, NULL, NULL, '2', 103, 1, '2025-03-04 16:10:01', 1, '2025-03-04 16:10:27', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_repair_res -- ---------------------------- DROP TABLE IF EXISTS `eims_repair_res`; CREATE TABLE `eims_repair_res` ( `id` bigint NOT NULL, `req_id` bigint DEFAULT NULL COMMENT '报修单id', `req_user` bigint DEFAULT NULL COMMENT '报修人', `req_dept` bigint DEFAULT NULL COMMENT '报修人部门', `res_user` bigint DEFAULT NULL COMMENT '维修人', `res_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修单号', `res_dept` bigint DEFAULT NULL COMMENT '维修人部门', `res_reason` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '原因分析\n', `res_handle` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '处理措施', `res_prevent` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '预防措施', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '维修状态(字典)', `start_time` datetime DEFAULT NULL COMMENT '开始时间', `end_time` datetime DEFAULT NULL COMMENT '结束时间', `use_fixture` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '使用工具', `use_parts` varchar(200) 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 '备注', `fb_id` bigint DEFAULT NULL COMMENT '评价id', PRIMARY KEY (`id`), UNIQUE KEY `req_id` (`req_id`), UNIQUE KEY `code` (`res_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_repair_res -- ---------------------------- BEGIN; INSERT INTO `eims_repair_res` (`id`, `req_id`, `req_user`, `req_dept`, `res_user`, `res_code`, `res_dept`, `res_reason`, `res_handle`, `res_prevent`, `status`, `start_time`, `end_time`, `use_fixture`, `use_parts`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `fb_id`) VALUES (1895296244676780034, 1895287406519095297, 1, 103, 1889581724095836162, 'WXD202502280001', 100, 'ghjkl', 'ghjkl', 'vbnm,./', '3', '2025-02-28 10:35:05', '2025-02-28 10:38:32', NULL, NULL, 103, 1, '2025-02-28 10:13:32', 1, '2025-03-03 13:48:13', NULL, 1896437434475851778); INSERT INTO `eims_repair_res` (`id`, `req_id`, `req_user`, `req_dept`, `res_user`, `res_code`, `res_dept`, `res_reason`, `res_handle`, `res_prevent`, `status`, `start_time`, `end_time`, `use_fixture`, `use_parts`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `fb_id`) VALUES (1895305450813304833, 1895287406519095298, 1, 103, 1889581724095836162, 'WXD202502280002', 100, 'fghjkl;', 'ghjkl;', 'ghjkl;', '3', '2025-02-28 10:50:03', '2025-02-28 10:50:05', NULL, NULL, 103, 1, '2025-02-28 10:50:07', 1, '2025-03-05 14:54:34', NULL, NULL); INSERT INTO `eims_repair_res` (`id`, `req_id`, `req_user`, `req_dept`, `res_user`, `res_code`, `res_dept`, `res_reason`, `res_handle`, `res_prevent`, `status`, `start_time`, `end_time`, `use_fixture`, `use_parts`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `fb_id`) VALUES (1895349522965901314, 1895349326689251329, 1, 103, 1889581724095836162, 'WXD202502280003', 100, 'CGHJKL', 'FGHJKL', 'FGHJKL', '3', '2025-02-28 13:46:11', '2025-02-28 14:01:12', NULL, NULL, 103, 1, '2025-02-28 13:45:15', 1, '2025-03-03 10:23:56', '方法', 1896386025134993409); INSERT INTO `eims_repair_res` (`id`, `req_id`, `req_user`, `req_dept`, `res_user`, `res_code`, `res_dept`, `res_reason`, `res_handle`, `res_prevent`, `status`, `start_time`, `end_time`, `use_fixture`, `use_parts`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `fb_id`) VALUES (1895349523402108929, 1895349490514571266, 1, 103, 1889581724095836162, 'WXD202502280004', 100, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, 103, 1, '2025-02-28 13:45:15', 1, '2025-02-28 13:45:15', NULL, NULL); INSERT INTO `eims_repair_res` (`id`, `req_id`, `req_user`, `req_dept`, `res_user`, `res_code`, `res_dept`, `res_reason`, `res_handle`, `res_prevent`, `status`, `start_time`, `end_time`, `use_fixture`, `use_parts`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `fb_id`) VALUES (1896835549241143298, 1896835506257915905, 1, 103, 1889581724095836162, 'WXD202503040001', 100, NULL, NULL, NULL, '2', '2025-03-04 16:10:25', NULL, NULL, NULL, 103, 1, '2025-03-04 16:10:11', 1, '2025-03-04 16:10:27', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for eims_spare -- ---------------------------- DROP TABLE IF EXISTS `eims_spare`; CREATE TABLE `eims_spare` ( `id` bigint NOT NULL, `type` bigint DEFAULT NULL COMMENT '类型', `name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备件名称', `code` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备件编码', `img` bigint DEFAULT NULL COMMENT '备件图片', `model_no` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '型号', `made_in` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '制造商', `supplier` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '供应商', `unit` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '计量单位(字典)', `refer_price` decimal(10,2) DEFAULT NULL COMMENT '参考价格', `upper_stock` int DEFAULT NULL COMMENT '库存上限', `lower_stock` int DEFAULT NULL COMMENT '库存下限', `actual_stock` int DEFAULT NULL COMMENT '实际库存', `stock_amount` decimal(10,2) DEFAULT NULL COMMENT '库存金额', `replace_cycle` int DEFAULT NULL COMMENT '更换周期', `cycle_unit` 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 NULL COMMENT '备注', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_spare -- ---------------------------- BEGIN; INSERT INTO `eims_spare` (`id`, `type`, `name`, `code`, `img`, `model_no`, `made_in`, `supplier`, `unit`, `refer_price`, `upper_stock`, `lower_stock`, `actual_stock`, `stock_amount`, `replace_cycle`, `cycle_unit`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902923675729776641, 1902609350246907905, '测试', '21345678', 1904713166944813057, '1', '上海看包', '几趟结构设计', '1', 1.00, 10, 20, 20, 100.00, 1, '1', 103, 1, '2025-03-21 11:22:14', 1, '2025-03-26 09:57:34', '111'); INSERT INTO `eims_spare` (`id`, `type`, `name`, `code`, `img`, `model_no`, `made_in`, `supplier`, `unit`, `refer_price`, `upper_stock`, `lower_stock`, `actual_stock`, `stock_amount`, `replace_cycle`, `cycle_unit`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902926062875947009, 1902609191249231873, '分工会就开了', 'fgh', 1904715315208572929, NULL, NULL, NULL, NULL, 10.12, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-03-21 11:31:43', 1, '2025-03-26 10:01:35', NULL); INSERT INTO `eims_spare` (`id`, `type`, `name`, `code`, `img`, `model_no`, `made_in`, `supplier`, `unit`, `refer_price`, `upper_stock`, `lower_stock`, `actual_stock`, `stock_amount`, `replace_cycle`, `cycle_unit`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902985071116959745, 1902609260400721922, '启动配件', 'pj101', 1904715385878401026, NULL, NULL, NULL, NULL, 2.21, NULL, NULL, NULL, 1.11, NULL, NULL, 103, 1, '2025-03-21 15:26:11', 1, '2025-03-26 10:01:52', NULL); COMMIT; -- ---------------------------- -- Table structure for eims_spare_inout -- ---------------------------- DROP TABLE IF EXISTS `eims_spare_inout`; CREATE TABLE `eims_spare_inout` ( `id` bigint NOT NULL, `order_code` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '单号', `order_time` datetime DEFAULT NULL COMMENT '单号日期', `charge_dept` bigint DEFAULT NULL COMMENT '经办人部门', `charge_user` bigint DEFAULT NULL COMMENT '经办人', `type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '工单类型(1-入库单 2-出库单) 字典', `partner_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '出库客户名称或入库供应商', `associated_order` varchar(50) 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 (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_spare_inout -- ---------------------------- BEGIN; INSERT INTO `eims_spare_inout` (`id`, `order_code`, `order_time`, `charge_dept`, `charge_user`, `type`, `partner_name`, `associated_order`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904810734586462209, 'CK202503260001', '2025-03-26 16:20:36', 100, 1889581665270722561, '2', '上海', NULL, 103, 1, '2025-03-26 16:20:43', 1, '2025-03-26 16:20:43', '爱思'); INSERT INTO `eims_spare_inout` (`id`, `order_code`, `order_time`, `charge_dept`, `charge_user`, `type`, `partner_name`, `associated_order`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904814428589686785, 'RK202503260001', '2025-03-26 16:35:21', 100, 1, '1', '结果', NULL, 103, 1, '2025-03-26 16:35:24', 1, '2025-03-26 16:35:24', '1212'); COMMIT; -- ---------------------------- -- Table structure for eims_spare_type -- ---------------------------- DROP TABLE IF EXISTS `eims_spare_type`; CREATE TABLE `eims_spare_type` ( `id` bigint NOT NULL, `type_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `type_code` varchar(10) CHARACTER SET utf8mb4 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 (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of eims_spare_type -- ---------------------------- BEGIN; INSERT INTO `eims_spare_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 (1902609191249231873, '工具', '10000', 0, 1, 'C', '#', '0', 103, 1, '2025-03-20 14:32:35', 1, '2025-03-20 14:32:35', ''); INSERT INTO `eims_spare_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 (1902609260400721922, '启动配件', '20000', 0, 2, 'C', '#', '0', 103, 1, '2025-03-20 14:32:51', 1, '2025-03-20 14:32:51', ''); INSERT INTO `eims_spare_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 (1902609350246907905, '油类', '30000', 0, 3, 'C', '#', '0', 103, 1, '2025-03-20 14:33:13', 1, '2025-03-20 14:33:13', ''); INSERT INTO `eims_spare_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 (1902609450763403265, '低值易耗品', '40000', 0, 4, 'C', '#', '0', 103, 1, '2025-03-20 14:33:36', 1, '2025-03-20 14:33:36', ''); INSERT INTO `eims_spare_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 (1902609522750242817, '办公配件', '50000', 0, 5, 'C', '#', '0', 103, 1, '2025-03-20 14:33:54', 1, '2025-03-20 14:33:54', ''); INSERT INTO `eims_spare_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 (1902609612940361730, '劳保', '60000', 0, 6, 'C', '#', '0', 103, 1, '2025-03-20 14:34:15', 1, '2025-03-20 14:34:15', ''); INSERT INTO `eims_spare_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 (1902609679487188993, '厂务', '70000', 0, 7, 'C', '#', '0', 103, 1, '2025-03-20 14:34:31', 1, '2025-03-20 14:34:31', ''); INSERT INTO `eims_spare_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 (1902609722306838530, '其它', '80000', 0, 8, 'C', '#', '0', 103, 1, '2025-03-20 14:34:41', 1, '2025-03-20 14:34:41', ''); COMMIT; -- ---------------------------- -- Table structure for FLW_CHANNEL_DEFINITION -- ---------------------------- DROP TABLE IF EXISTS `FLW_CHANNEL_DEFINITION`; CREATE TABLE `FLW_CHANNEL_DEFINITION` ( `ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `VERSION_` int DEFAULT NULL, `KEY_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DEPLOYMENT_ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `CREATE_TIME_` datetime(3) DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `RESOURCE_NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DESCRIPTION_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `TYPE_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `IMPLEMENTATION_` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `AUTHOR` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `FILENAME` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `DATEEXECUTED` datetime NOT NULL, `ORDEREXECUTED` int NOT NULL, `EXECTYPE` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `MD5SUM` varchar(35) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DESCRIPTION` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `COMMENTS` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `TAG` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `LIQUIBASE` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `CONTEXTS` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `LABELS` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DEPLOYMENT_ID` varchar(10) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `VERSION_` int DEFAULT NULL, `KEY_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DEPLOYMENT_ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `RESOURCE_NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DESCRIPTION_` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `CATEGORY_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DEPLOY_TIME_` datetime(3) DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `PARENT_DEPLOYMENT_ID_` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `NAME_` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `DEPLOYMENT_ID_` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `TYPE_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `SEARCH_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SEARCH_KEY2_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` datetime(3) NOT NULL, `COMPLETE_TIME_` datetime(3) DEFAULT NULL, `STATUS_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `BATCH_DOC_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `REV_` int DEFAULT NULL, `BATCH_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TYPE_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `SCOPE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SUB_SCOPE_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SCOPE_TYPE_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SEARCH_KEY_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `SEARCH_KEY2_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `CREATE_TIME_` datetime(3) NOT NULL, `COMPLETE_TIME_` datetime(3) DEFAULT NULL, `STATUS_` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `RESULT_DOC_ID_` varchar(64) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `TENANT_ID_` varchar(255) CHARACTER SET utf8mb3 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '数据源名称', `table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '表名称', `table_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '表描述', `sub_table_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关联子表的表名', `sub_table_fk_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '子表关联的外键名', `class_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '实体类名称', `tpl_category` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)', `package_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成包路径', `module_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成模块名', `business_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成业务名', `function_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成功能名', `function_author` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成功能作者', `gen_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)', `gen_path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '/' COMMENT '生成路径(不填默认项目路径)', `options` varchar(1000) 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 (`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); 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 (1888835484331630593, 'master', 'eims_repair_req', '故障报修', NULL, NULL, 'EimsRepairReq', 'crud', 'org.dromara.eims', 'eims', 'repairReq', '故障报修', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17', 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 (1890262999453499393, 'master', 'eims_fixture', '工具(治具)台账', NULL, NULL, 'EimsFixture', 'crud', 'org.dromara.eims', 'eims', 'fixture', '工具(治具)台账', 'zhuguifei', '0', '/', '{\"parentMenuId\":0,\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56', 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 (1891318327058231298, 'master', 'eims_fixture_type', '工具类型', NULL, NULL, 'EimsFixtureType', 'tree', 'org.dromara.eims', 'eims', 'fixtureType', '工具类型', 'zhuguifei', '0', '/', '{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09', 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 (1891691301390053378, 'master', 'eims_fixture_borrow', '工具借用记录', NULL, NULL, 'EimsFixtureBorrow', 'crud', 'org.dromara.eims', 'eims', 'fixtureBorrow', '工具借用', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19', 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 (1894279239826354178, 'master', 'eims_repair_res', '维修工单', NULL, NULL, 'EimsRepairRes', 'crud', 'org.dromara.eims', 'eims', 'repairRes', '维修工单', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-25 14:52:19', 1, '2025-02-25 14:59:08', 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 (1894661734213754881, 'master', 'eims_repair_record', '维修记录', NULL, NULL, 'EimsRepairRecord', 'crud', 'org.dromara.eims', 'eims', 'repairRecord', '维修记录', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16', 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 (1895363373023277058, 'master', 'eims_repair_fb', '维修评价', NULL, NULL, 'EimsRepairFb', 'crud', 'org.dromara.eims', 'eims', 'repairFb', '维修评价', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12', 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 (1896749886265659393, 'master', 'eims_maint_stand', '保养标准', NULL, NULL, 'EimsMaintStand', 'crud', 'org.dromara.eims', 'eims', 'maintStand', '保养标准', 'zhuguifei', '0', '/', '{\"parentMenuId\":0,\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-04 10:29:47', 1, '2025-03-04 10:32: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 (1896802460217483265, 'master', 'eims_maint_plan', '保养计划', NULL, NULL, 'EimsMaintPlan', 'crud', 'org.dromara.eims', 'eims', 'maintPlan', '保养计划', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31', 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 (1897209998247264257, 'master', 'eims_maint_order', '保养工单', NULL, NULL, 'EimsMaintOrder', 'crud', 'org.dromara.eims', 'eims', 'maintOrder', '保养工单', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27', 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 (1898903041693962242, 'master', 'eims_maint_orditm', '保养工单条目', NULL, NULL, 'EimsMaintOrditm', 'crud', 'org.dromara.eims', 'eims', 'maintOrditm', '工单条目', 'zhuguifei', '0', '/', '{\"parentMenuId\":0,\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38', 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 (1899637591828963330, 'master', 'eims_maint_order_st', '保养工单汇总', NULL, NULL, 'EimsMaintOrderSt', 'crud', 'org.dromara.eims', 'eims', 'maintOrderSt', '保养工单汇总', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38', 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 (1899745214761447426, 'master', 'eims_inspect_plan', '点检计划', NULL, NULL, 'EimsInspectPlan', 'crud', 'org.dromara.eims', 'eims', 'inspectPlan', '点检计划', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-12 16:52:09', 1, '2025-03-12 16:55:00', 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 (1900019733193650178, 'master', 'eims_inspect_record', '点检记录', NULL, NULL, 'EimsInspectRecord', 'crud', 'org.dromara.eims', 'eims', 'inspectRecord', '点检记录', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25', 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 (1900366121012326401, 'master', 'eims_inspect_st', '点检汇总', NULL, NULL, 'EimsInspectSt', 'crud', 'org.dromara.eims', 'eims', 'inspectSt', '点检汇总', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06', 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 (1901882723547258882, 'master', 'eims_fault_know', '故障知识', NULL, NULL, 'EimsFaultKnow', 'crud', 'org.dromara.eims', 'eims', 'faultKnow', '故障知识', 'zhuguifei', '0', '/', '{\"parentMenuId\":0,\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59', 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 (1902596806476042242, 'master', 'eims_spare_type', '备件类型', NULL, NULL, 'EimsSpareType', 'tree', 'org.dromara.eims', 'eims', 'spareType', '备件类型', 'zhuguifei', '0', '/', '{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21', 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 (1902629092508680193, 'master', 'eims_spare', '备件台账', NULL, NULL, 'EimsSpare', 'crud', 'org.dromara.eims', 'eims', 'spare', '备件台账', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-20 15:51:39', 1, '2025-03-20 16:02:50', 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 (1904769112538664961, 'master', 'eims_spare_inout', '备件出入库', NULL, NULL, 'EimsSpareInout', 'crud', 'org.dromara.eims', 'eims', 'spareInout', '备件出入库', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52', 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列名称', `column_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列描述', `column_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列类型', `java_type` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA类型', `java_field` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA字段名', `is_pk` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否主键(1是)', `is_increment` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否自增(1是)', `is_required` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否必填(1是)', `is_insert` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否为插入字段(1是)', `is_edit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否编辑字段(1是)', `is_list` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否列表字段(1是)', `is_query` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否查询字段(1是)', `query_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)', `html_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', `dict_type` varchar(200) CHARACTER SET utf8mb4 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'); 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 (1888835484528762881, 1888835484331630593, 'id', '报修id', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484537151490, 1888835484331630593, 'code', '报修单号', 'varchar', 'String', 'code', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484537151491, 1888835484331630593, 'status', '报修状态', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 3, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484537151492, 1888835484331630593, 'occ_time', '发生事件', 'datetime', 'Date', 'occTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 4, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484537151493, 1888835484331630593, 'req_time', '报修时间', 'datetime', 'Date', 'reqTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 5, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484541345794, 1888835484331630593, 'req_dept', '报修人部门', 'bigint', 'Long', 'reqDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484541345795, 1888835484331630593, 'req_user', '报修人', 'bigint', 'Long', 'reqUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484541345796, 1888835484331630593, 'req_desc', '报修描述', 'varchar', 'String', 'reqDesc', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484541345797, 1888835484331630593, 'urgency_level', '紧急程度', 'char', 'String', 'urgencyLevel', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484541345798, 1888835484331630593, 'fault_picture', '故障图片', 'varchar', 'String', 'faultPicture', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484545540097, 1888835484331630593, 'req_type', '报修类型', 'char', 'String', 'reqType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 11, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484545540098, 1888835484331630593, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 12, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484545540099, 1888835484331630593, 'repair_id', '维修单id', 'bigint', 'Long', 'repairId', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484545540100, 1888835484331630593, 'repair_dept', '维修人部门', 'bigint', 'Long', 'repairDept', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 14, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484545540101, 1888835484331630593, 'repair_user', '维修人', 'bigint', 'Long', 'repairUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 15, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734401, 1888835484331630593, 'fault_type', '故障类别', 'char', 'String', 'faultType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 16, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734402, 1888835484331630593, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734403, 1888835484331630593, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734404, 1888835484331630593, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 19, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734405, 1888835484331630593, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 20, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484549734406, 1888835484331630593, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 21, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1888835484553928705, 1888835484331630593, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 22, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17'); 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 (1890262999663214593, 1890262999453499393, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999671603201, 1890262999453499393, 'fixtrue_code', '治具编码', 'varchar', 'String', 'fixtrueCode', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999675797505, 1890262999453499393, 'fixtrue_name', '治具名称', 'varchar', 'String', 'fixtrueName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999675797506, 1890262999453499393, 'fixtrue_type', '治具(工具)类型', 'char', 'String', 'fixtrueType', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', 'eims_fixtrue_type', 4, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999679991810, 1890262999453499393, 'fixtrue_desc', '治具描述', 'varchar', 'String', 'fixtrueDesc', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999679991811, 1890262999453499393, 'asset_no', '资产编号', 'varchar', 'String', 'assetNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 7, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999679991812, 1890262999453499393, 'model_no', '型号', 'varchar', 'String', 'modelNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 8, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999684186113, 1890262999453499393, 'spec_no', '规格', 'varchar', 'String', 'specNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 9, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999684186114, 1890262999453499393, 'made_in', '制造商', 'varchar', 'String', 'madeIn', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 10, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999684186115, 1890262999453499393, 'purchase_date', '采购日期', 'date', 'Date', 'purchaseDate', '0', '1', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 11, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999688380417, 1890262999453499393, 'deploy_date', '使用日期', 'date', 'Date', 'deployDate', '0', '1', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 12, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999688380418, 1890262999453499393, 'service_life', '使用年限', 'int', 'Long', 'serviceLife', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 13, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999688380419, 1890262999453499393, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999692574722, 1890262999453499393, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999692574723, 1890262999453499393, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999692574724, 1890262999453499393, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999692574725, 1890262999453499393, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 18, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890262999696769025, 1890262999453499393, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 19, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56'); 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 (1890265656763187201, 1890262999453499393, 'status', '状态(字典)', 'char', 'String', 'status', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', 'eims_fixtrue_status', 6, 103, 1, '2025-02-14 13:03:47', 1, '2025-02-14 13:04:56'); 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 (1891318327402164225, 1891318327058231298, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327414747138, 1891318327058231298, 'type_name', '类型名称', 'varchar', 'String', 'typeName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327418941442, 1891318327058231298, 'type_code', '类型编码', 'varchar', 'String', 'typeCode', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327418941443, 1891318327058231298, 'parent_id', '父id', 'bigint', 'Long', 'parentId', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 4, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327423135745, 1891318327058231298, 'order_num', '显示顺序', 'int', 'Long', 'orderNum', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327423135746, 1891318327058231298, 'menu_type', '菜单类型(M目录 C菜单 F按钮)', 'char', 'String', 'menuType', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'select', '', 6, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327427330050, 1891318327058231298, 'icon', '菜单图标', 'varchar', 'String', 'icon', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327427330051, 1891318327058231298, 'status', '菜单状态(0正常 1停用)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'sys_show_hide', 8, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327435718657, 1891318327058231298, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327435718658, 1891318327058231298, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327439912961, 1891318327058231298, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327444107265, 1891318327058231298, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327444107266, 1891318327058231298, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891318327444107267, 1891318327058231298, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09'); 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 (1891691301759152129, 1891691301390053378, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301767540738, 1891691301390053378, 'fixture_id', '借用工具id', 'bigint', 'Long', 'fixtureId', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301767540739, 1891691301390053378, 'borrow_dept', '借用部门', 'bigint', 'Long', 'borrowDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 4, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301771735042, 1891691301390053378, 'borrow_user', '借用人', 'bigint', 'Long', 'borrowUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301771735043, 1891691301390053378, 'agent_user', '经办人', 'bigint', 'Long', 'agentUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301771735044, 1891691301390053378, 'status', '借用记录状态(字典)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'fixture_borrow_record_status', 7, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301771735045, 1891691301390053378, 'borrow_time', '借用时间', 'datetime', 'Date', 'borrowTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 8, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301775929345, 1891691301390053378, 'plan_return_time', '预计归还时间', 'datetime', 'Date', 'planReturnTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301775929346, 1891691301390053378, 'return_time', '归还时间', 'datetime', 'Date', 'returnTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301775929347, 1891691301390053378, 'borrow_reason', '借用理由', 'varchar', 'String', 'borrowReason', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301775929348, 1891691301390053378, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301780123650, 1891691301390053378, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301780123651, 1891691301390053378, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301780123652, 1891691301390053378, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301780123653, 1891691301390053378, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891691301784317953, 1891691301390053378, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19'); 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 (1891716189085560834, 1891691301390053378, 'fixture_name', '借用工具名称', 'varchar', 'String', 'fixtureName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 103, 1, '2025-02-18 13:07:41', 1, '2025-02-18 13:14:19'); 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 (1894279240451305474, 1894279239826354178, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240468082690, 1894279239826354178, 'req_id', '报修单id', 'bigint', 'Long', 'reqId', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 2, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240497442817, 1894279239826354178, 'res_user', '维修人', 'bigint', 'Long', 'resUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240510025730, 1894279239826354178, 'res_dept', '维修人部门', 'bigint', 'Long', 'resDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240510025731, 1894279239826354178, 'res_reason', '原因分析\n', 'varchar', 'String', 'resReason', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240514220033, 1894279239826354178, 'res_handle', '处理措施', 'varchar', 'String', 'resHandle', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 6, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240518414338, 1894279239826354178, 'res_prevent', '预防措施', 'varchar', 'String', 'resPrevent', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240522608642, 1894279239826354178, 'status', '维修状态(字典)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'repair_res_status', 8, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240526802946, 1894279239826354178, 'start_time', '开始时间', 'datetime', 'Date', 'startTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240530997250, 1894279239826354178, 'end_time', '结束时间', 'datetime', 'Date', 'endTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 10, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240530997251, 1894279239826354178, 'use_fixture', '使用工具', 'varchar', 'String', 'useFixture', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240535191554, 1894279239826354178, 'use_parts', '使用备件', 'varchar', 'String', 'useParts', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240539385857, 1894279239826354178, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240539385858, 1894279239826354178, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240564551682, 1894279239826354178, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 15, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240572940289, 1894279239826354178, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 16, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240577134594, 1894279239826354178, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 17, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894279240581328897, 1894279239826354178, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-02-25 14:52:20', 1, '2025-02-25 14:59:08'); 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 (1894661734645768193, 1894661734213754881, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734696099841, 1894661734213754881, 'req_id', '报修单id', 'bigint', 'Long', 'reqId', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 2, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734708682753, 1894661734213754881, 'res_id', '维修单id', 'bigint', 'Long', 'resId', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 3, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734712877058, 1894661734213754881, 'handle_time', '处理时间', 'datetime', 'Date', 'handleTime', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 4, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734717071361, 1894661734213754881, 'opera_user', '操作用户', 'bigint', 'Long', 'operaUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734746431489, 1894661734213754881, 'opera', '操作(字典)', 'char', 'String', 'opera', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734759014401, 1894661734213754881, 'opera_result', '操作结果', 'varchar', 'String', 'operaResult', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734771597314, 1894661734213754881, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734775791617, 1894661734213754881, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734784180225, 1894661734213754881, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734788374529, 1894661734213754881, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734792568834, 1894661734213754881, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1894661734809346050, 1894661734213754881, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-26 16:12:13', 1, '2025-02-26 16:13:16'); 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 (1895363373413347329, 1895363373023277058, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373438513154, 1895363373023277058, 'res_id', '维修工单id\n', 'bigint', 'Long', 'resId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373451096066, 1895363373023277058, 'fb_result', '反馈结果', 'varchar', 'String', 'fbResult', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 3, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373459484673, 1895363373023277058, 'fb_user', '反馈人', 'bigint', 'Long', 'fbUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373463678977, 1895363373023277058, 'fb_dept', '反馈人部门', 'bigint', 'Long', 'fbDept', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373488844802, 1895363373023277058, 'fb_time', '反馈时间', 'datetime', 'Date', 'fbTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 6, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373497233410, 1895363373023277058, 'repair_timeliness', '维修及时性(字典)', 'char', 'String', 'repairTimeliness', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373514010625, 1895363373023277058, 'repair_ss', '维修现场6s', 'char', 'String', 'repairSs', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373526593538, 1895363373023277058, 'repair_satisfaction', '维修满意度', 'char', 'String', 'repairSatisfaction', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 10, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373530787842, 1895363373023277058, 'suggestions', '意见或建议', 'varchar', 'String', 'suggestions', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373534982145, 1895363373023277058, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373555953666, 1895363373023277058, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373560147969, 1895363373023277058, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373564342274, 1895363373023277058, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373568536577, 1895363373023277058, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895363373572730882, 1895363373023277058, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-28 14:40:17', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1895364625023021057, 1895363373023277058, 'service_attitude', '服务态度', 'char', 'String', 'serviceAttitude', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 8, 103, 1, '2025-02-28 14:45:15', 1, '2025-02-28 14:46:12'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1896749886894804994, 1896749886265659393, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886932553730, 1896749886265659393, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886945136641, 1896749886265659393, 'equ_code', '设备编码', 'varchar', 'String', 'equCode', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 3, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886953525250, 1896749886265659393, 'equ_type_id', '设备类型', 'bigint', 'Long', 'equTypeId', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886953525251, 1896749886265659393, 'asset_no', '资产编号', 'varchar', 'String', 'assetNo', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886966108162, 1896749886265659393, 'equ_name', '设备名称\n', 'varchar', 'String', 'equName', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 6, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886974496770, 1896749886265659393, 'model_no', '设备型号', 'varchar', 'String', 'modelNo', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886978691073, 1896749886265659393, 'name', '保养项目名称', 'varchar', 'String', 'name', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 8, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886982885378, 1896749886265659393, 'stand', '保养项目标准', 'varchar', 'String', 'stand', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749886982885379, 1896749886265659393, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749887008051201, 1896749886265659393, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749887020634114, 1896749886265659393, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749887024828417, 1896749886265659393, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749887033217025, 1896749886265659393, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896749887037411330, 1896749886265659393, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-04 10:29:48', 1, '2025-03-04 10:32: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 (1896802460741771266, 1896802460217483265, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460771131393, 1896802460217483265, 'equ_id', '设备id\n', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460775325697, 1896802460217483265, 'maint_type', '保养类型(字典)', 'char', 'String', 'maintType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', 'eims_maint_type', 3, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460787908609, 1896802460217483265, 'maint_cycle', '保养周期', 'int', 'Long', 'maintCycle', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 4, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460787908610, 1896802460217483265, 'maint_cycle_unit', '保养周期单位(字典)', 'char', 'String', 'maintCycleUnit', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', 'maint_cycle_unit', 5, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460792102914, 1896802460217483265, 'maint_rule', '保养规则(字典)保养时间计算:1-按周期 2-按上次保养时间', 'char', 'String', 'maintRule', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', 'maint_time_rule', 6, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460800491521, 1896802460217483265, 'maint_user', '保养人', 'bigint', 'Long', 'maintUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460804685825, 1896802460217483265, 'maint_dept', '保养部门', 'bigint', 'Long', 'maintDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460804685826, 1896802460217483265, 'status', '状态(字典) 0-启用 1-禁用', 'bigint', 'Long', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'sys_normal_disable', 9, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460808880130, 1896802460217483265, 'maint_last_time', '上次执行时间', 'datetime', 'Date', 'maintLastTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460813074433, 1896802460217483265, 'maint_next_time', '下次执行时间', 'datetime', 'Date', 'maintNextTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460817268737, 1896802460217483265, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460842434562, 1896802460217483265, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460842434563, 1896802460217483265, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460846628865, 1896802460217483265, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460850823170, 1896802460217483265, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1896802460855017474, 1896802460217483265, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-03-04 13:58:42', 1, '2025-03-04 14:01:31'); 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 (1897209998746386434, 1897209998247264257, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998784135170, 1897209998247264257, 'equ_id', '', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998788329474, 1897209998247264257, 'maint_type', '计划表冗余-保养类型(字典)', 'char', 'String', 'maintType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 3, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998788329475, 1897209998247264257, 'maint_cycle', '计划表冗余-保养周期', 'int', 'Long', 'maintCycle', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998796718081, 1897209998247264257, 'maint_cycle_unit', '计划表冗余-保养周期单位(字典)', 'char', 'String', 'maintCycleUnit', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998800912386, 1897209998247264257, 'maint_rule', '计划表冗余- 保养规则(字典)保养时间计算:1-按周期 2-按上次保养时间', 'char', 'String', 'maintRule', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998800912387, 1897209998247264257, 'maint_user', '计划表冗余-保养人', 'bigint', 'Long', 'maintUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998817689602, 1897209998247264257, 'maint_dept', '计划表冗余-保养部门', 'bigint', 'Long', 'maintDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998817689603, 1897209998247264257, 'maint_code', '保养单号', 'varchar', 'String', 'maintCode', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998821883906, 1897209998247264257, 'status', '', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 10, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998847049730, 1897209998247264257, 'plan_time', '保养计划时间', 'datetime', 'Date', 'planTime', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 11, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998847049731, 1897209998247264257, 'start_time', '保养开始时间', 'datetime', 'Date', 'startTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998851244034, 1897209998247264257, 'end_time', '保养结束时间', 'datetime', 'Date', 'endTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998859632642, 1897209998247264257, 'plan_id', '计划id', 'bigint', 'Long', 'planId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 14, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998863826945, 1897209998247264257, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998863826946, 1897209998247264257, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 16, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998872215553, 1897209998247264257, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 17, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998876409858, 1897209998247264257, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998880604162, 1897209998247264257, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 19, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1897209998884798465, 1897209998247264257, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 20, NULL, 1, '2025-03-05 16:58:07', 1, '2025-03-06 08:59:27'); 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 (1898903042084032513, 1898903041693962242, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042096615425, 1898903041693962242, 'order_id', '工单id', 'bigint', 'Long', 'orderId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042100809730, 1898903041693962242, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042105004034, 1898903041693962242, 'itm_name', '保养项目名称', 'varchar', 'String', 'itmName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 4, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042184695810, 1898903041693962242, 'itm_action', '保养项目操作标准', 'varchar', 'String', 'itmAction', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042239221762, 1898903041693962242, 'itm_user', '保养操作用户', 'bigint', 'Long', 'itmUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042243416065, 1898903041693962242, 'itm_time', '保养时间', 'datetime', 'Date', 'itmTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 7, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042247610370, 1898903041693962242, 'status', '完成状态(字典)', 'char', 'String', 'status', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', 'eims_orditm_status', 8, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042247610371, 1898903041693962242, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042255998977, 1898903041693962242, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042255998978, 1898903041693962242, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042293747714, 1898903041693962242, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042293747715, 1898903041693962242, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1898903042293747716, 1898903041693962242, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-03-10 09:05:40', 1, '2025-03-10 09:07:38'); 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 (1899637591988346882, 1899637591828963330, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592000929793, 1899637591828963330, 'title', '', 'varchar', 'String', 'title', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592005124098, 1899637591828963330, 'equ_id', '', 'varchar', 'String', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592005124099, 1899637591828963330, 'plan_time', '', 'date', 'Date', 'planTime', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 4, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592005124100, 1899637591828963330, 'maint_user', '保养人', 'bigint', 'Long', 'maintUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592005124101, 1899637591828963330, 'verify_user', '验证人', 'bigint', 'Long', 'verifyUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592009318402, 1899637591828963330, 'special_note', '特记事项', 'varchar', 'String', 'specialNote', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592009318403, 1899637591828963330, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592009318404, 1899637591828963330, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592009318405, 1899637591828963330, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592013512706, 1899637591828963330, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592013512707, 1899637591828963330, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899637592013512708, 1899637591828963330, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-12 09:44:30', 1, '2025-03-12 09:45:38'); 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 (1899745215323484161, 1899745214761447426, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215378010114, 1899745214761447426, 'equ_id', '设备id\n', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215394787330, 1899745214761447426, 'insp_type', '点检类型(字典)', 'char', 'String', 'inspType', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', '', 3, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215398981634, 1899745214761447426, 'insp_name', '点检项名称', 'varchar', 'String', 'inspName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 4, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215411564545, 1899745214761447426, 'insp_no', '点检项编号', 'int', 'Long', 'inspNo', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215457701889, 1899745214761447426, 'insp_desc', '点检说明', 'varchar', 'String', 'inspDesc', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 6, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215461896194, 1899745214761447426, 'insp_cycle', '点检周期', 'int', 'Long', 'inspCycle', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215470284801, 1899745214761447426, 'insp_cycle_unit', '点检周期单位(字典)', 'char', 'String', 'inspCycleUnit', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 8, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215474479106, 1899745214761447426, 'insp_rule', '点检规则(字典)保养时间计算:1-按周期 2-按上次保养时间', 'char', 'String', 'inspRule', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215478673409, 1899745214761447426, 'insp_user', '点检人', 'bigint', 'Long', 'inspUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 10, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215512227842, 1899745214761447426, 'insp_dept', '点检部门', 'bigint', 'Long', 'inspDept', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 11, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215516422145, 1899745214761447426, 'status', '状态(字典) 0-启用 1-禁用', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 12, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215524810753, 1899745214761447426, 'insp_first_time', '首次执行时间', 'date', 'Date', 'inspFirstTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215529005057, 1899745214761447426, 'insp_last_time', '上次执行时间', 'date', 'Date', 'inspLastTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215537393666, 1899745214761447426, 'insp_next_time', '下次执行时间', 'date', 'Date', 'inspNextTime', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'datetime', '', 15, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215541587969, 1899745214761447426, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 16, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215591919618, 1899745214761447426, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215600308225, 1899745214761447426, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 18, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215600308226, 1899745214761447426, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 19, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215604502529, 1899745214761447426, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 20, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1899745215608696833, 1899745214761447426, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 21, NULL, 1, '2025-03-12 16:52:10', 1, '2025-03-12 16:55:00'); 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 (1900019733961207810, 1900019733193650178, 'id', 'id', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019733973790721, 1900019733193650178, 'equ_id', '设备di', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019733982179330, 1900019733193650178, 'insp_name', '点检名称', 'varchar', 'String', 'inspName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734019928066, 1900019733193650178, 'insp_desc', '点检描述', 'varchar', 'String', 'inspDesc', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 4, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734019928067, 1900019733193650178, 'status', '状态', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'eims_inspect_status', 5, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734028316674, 1900019733193650178, 'insp_code', '点检编码', 'varchar', 'String', 'inspCode', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734028316675, 1900019733193650178, 'record_mode', '值记录方式(字典)', 'char', 'String', 'recordMode', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734032510977, 1900019733193650178, 'reference_value', '参考值', 'varchar', 'String', 'referenceValue', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734036705282, 1900019733193650178, 'upper_limit', '上限', 'varchar', 'String', 'upperLimit', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734040899586, 1900019733193650178, 'low_limit', '下限', 'varchar', 'String', 'lowLimit', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734045093890, 1900019733193650178, 'check_value', '检查值', 'varchar', 'String', 'checkValue', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734049288193, 1900019733193650178, 'insp_result', '点检结果(字典)', 'char', 'String', 'inspResult', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', 'eims_inspect_result', 12, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734082842626, 1900019733193650178, 'insp_time', '点检时间', 'datetime', 'Date', 'inspTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 13, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734099619841, 1900019733193650178, 'plan_time', '计划点检日期', 'date', 'Date', 'planTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734103814146, 1900019733193650178, 'verify_user', '验证人', 'bigint', 'Long', 'verifyUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 15, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734103814147, 1900019733193650178, 'plan_id', '计划id', 'bigint', 'Long', 'planId', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 16, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734108008450, 1900019733193650178, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734116397057, 1900019733193650178, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734120591361, 1900019733193650178, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 19, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734149951489, 1900019733193650178, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 20, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734158340097, 1900019733193650178, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 21, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900019734162534401, 1900019733193650178, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 22, NULL, 1, '2025-03-13 11:03:00', 1, '2025-03-13 11:05:25'); 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 (1900366121687609346, 1900366121012326401, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121716969473, 1900366121012326401, 'title', '标题', 'varchar', 'String', 'title', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 2, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121767301121, 1900366121012326401, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078338, 1900366121012326401, 'plan_time', '计划时间', 'date', 'Date', 'planTime', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'datetime', '', 4, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078339, 1900366121012326401, 'status', '状态', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'eims_inspect_status', 5, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078340, 1900366121012326401, 'maint_user', '保养人', 'bigint', 'Long', 'maintUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078341, 1900366121012326401, 'verify_user', '稽查人', 'bigint', 'Long', 'verifyUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078342, 1900366121012326401, 'verify_time', '稽查日期', 'datetime', 'Date', 'verifyTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 8, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121784078343, 1900366121012326401, 'special_note', '特记事项', 'varchar', 'String', 'specialNote', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121830215681, 1900366121012326401, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121846992898, 1900366121012326401, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121851187202, 1900366121012326401, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121855381506, 1900366121012326401, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121859575809, 1900366121012326401, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121863770113, 1900366121012326401, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1900366121867964418, 1900366121012326401, 'uni_id', '唯一id(触发器使用)', 'varchar', 'String', 'uniId', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 16, NULL, 1, '2025-03-14 09:59:25', 1, '2025-03-14 10:01:06'); 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 (1901882724050575361, 1901882723547258882, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724105101313, 1901882723547258882, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724105101314, 1901882723547258882, 'equ_type', '设备类型', 'bigint', 'Long', 'equType', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', 'sys_device_type', 3, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724105101315, 1901882723547258882, 'equ_part', '设备部位(字典)', 'char', 'String', 'equPart', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724172210177, 1901882723547258882, 'fault_code', '知识编码', 'varchar', 'String', 'faultCode', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724172210178, 1901882723547258882, 'fault_type', '故障类别(字典)', 'char', 'String', 'faultType', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', 'repair_fault_type', 6, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724172210179, 1901882723547258882, 'fault_reason', '故障原因(字典)', 'char', 'String', 'faultReason', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724230930433, 1901882723547258882, 'req_desc', '报修描述', 'varchar', 'String', 'reqDesc', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 8, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724230930434, 1901882723547258882, 'res_handle', '处理措施', 'varchar', 'String', 'resHandle', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724230930435, 1901882723547258882, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724444839938, 1901882723547258882, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724449034242, 1901882723547258882, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724457422850, 1901882723547258882, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724465811458, 1901882723547258882, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1901882724537114625, 1901882723547258882, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-18 14:25:51', 1, '2025-03-18 14:30:59'); 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 (1902596806975164418, 1902596806476042242, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807021301762, 1902596806476042242, 'type_name', '类型名称', 'varchar', 'String', 'typeName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807025496066, 1902596806476042242, 'type_code', '类型编码', 'varchar', 'String', 'typeCode', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807033884673, 1902596806476042242, 'parent_id', '父id', 'bigint', 'Long', 'parentId', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 4, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807033884674, 1902596806476042242, 'order_num', '显示顺序', 'int', 'Long', 'orderNum', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807033884675, 1902596806476042242, 'menu_type', '菜单类型(M目录 C菜单 F按钮)', 'char', 'String', 'menuType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 6, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807046467586, 1902596806476042242, 'icon', '菜单图标', 'varchar', 'String', 'icon', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807046467587, 1902596806476042242, 'status', '菜单状态(0正常 1停用)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 8, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807071633410, 1902596806476042242, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807084216322, 1902596806476042242, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807084216323, 1902596806476042242, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807088410625, 1902596806476042242, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807092604929, 1902596806476042242, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902596807096799234, 1902596806476042242, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-03-20 13:43:22', 1, '2025-03-20 13:58:21'); 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 (1902629092986830849, 1902629092508680193, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093003608066, 1902629092508680193, 'type', '类型', 'bigint', 'Long', 'type', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 2, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093011996674, 1902629092508680193, 'name', '备件名称', 'varchar', 'String', 'name', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093032968194, 1902629092508680193, 'code', '备件编码', 'varchar', 'String', 'code', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093037162498, 1902629092508680193, 'img', '备件图片', 'bigint', 'Long', 'img', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'imageUpload', '', 5, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093041356802, 1902629092508680193, 'model_no', '型号', 'varchar', 'String', 'modelNo', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093049745409, 1902629092508680193, 'made_in', '制造商', 'varchar', 'String', 'madeIn', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093049745410, 1902629092508680193, 'supplier', '供应商', 'varchar', 'String', 'supplier', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 8, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093058134018, 1902629092508680193, 'unit', '计量单位(字典)', 'char', 'String', 'unit', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', 'eims_spare_unit', 9, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093062328322, 1902629092508680193, 'refer_price', '参考价格', 'decimal', 'Long', 'referPrice', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093070716929, 1902629092508680193, 'upper_stock', '库存上限', 'int', 'Long', 'upperStock', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093070716930, 1902629092508680193, 'lower_stock', '库存下限', 'int', 'Long', 'lowerStock', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093079105537, 1902629092508680193, 'actual_stock', '实际库存', 'int', 'Long', 'actualStock', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093108465666, 1902629092508680193, 'stock_amount', '库存金额', 'decimal', 'Long', 'stockAmount', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093108465667, 1902629092508680193, 'replace_cycle', '更换周期', 'int', 'Long', 'replaceCycle', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093112659969, 1902629092508680193, 'cycle_unit', '更换周期单位(字典)', 'char', 'String', 'cycleUnit', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'select', 'maint_cycle_unit', 16, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093116854274, 1902629092508680193, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093125242881, 1902629092508680193, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093133631489, 1902629092508680193, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 19, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093133631490, 1902629092508680193, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 20, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093137825794, 1902629092508680193, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 21, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1902629093142020097, 1902629092508680193, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 22, NULL, 1, '2025-03-20 15:51:40', 1, '2025-03-20 16:02:50'); 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 (1904769113029398530, 1904769112538664961, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113046175746, 1904769112538664961, 'order_code', '单号', 'varchar', 'String', 'orderCode', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113054564353, 1904769112538664961, 'order_date', '单号日期', 'datetime', 'Date', 'orderDate', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 3, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113054564354, 1904769112538664961, 'charge_user', '经办人', 'bigint', 'Long', 'chargeUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113058758658, 1904769112538664961, 'type', '工单类型(1-入库单 2-出库单) 字典', 'char', 'String', 'type', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', 'spare_inout_type', 5, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113058758659, 1904769112538664961, 'partner_name', '出库客户名称或入库供应商', 'varchar', 'String', 'partnerName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 6, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113083924482, 1904769112538664961, 'associated_order', '关联单号(如-维修单)', 'varchar', 'String', 'associatedOrder', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113083924483, 1904769112538664961, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113104896002, 1904769112538664961, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113109090306, 1904769112538664961, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113113284609, 1904769112538664961, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113117478914, 1904769112538664961, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); 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 (1904769113121673218, 1904769112538664961, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-03-26 13:35:20', 1, '2025-03-26 14:23:52'); COMMIT; -- ---------------------------- -- Table structure for sj_distributed_lock -- ---------------------------- DROP TABLE IF EXISTS `sj_distributed_lock`; CREATE TABLE `sj_distributed_lock` ( `name` varchar(64) NOT NULL COMMENT '锁名称', `lock_until` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '锁定时长', `locked_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '锁定时间', `locked_by` varchar(255) NOT NULL COMMENT '锁定者', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='锁定表'; -- ---------------------------- -- Records of sj_distributed_lock -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_group_config -- ---------------------------- DROP TABLE IF EXISTS `sj_group_config`; CREATE TABLE `sj_group_config` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '组描述', `token` varchar(64) NOT NULL DEFAULT 'SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT' COMMENT 'token', `group_status` tinyint NOT NULL DEFAULT '0' COMMENT '组状态 0、未启用 1、启用', `version` int NOT NULL COMMENT '版本号', `group_partition` int NOT NULL COMMENT '分区', `id_generator_mode` tinyint NOT NULL DEFAULT '1' COMMENT '唯一id生成模式 默认号段模式', `init_scene` tinyint NOT NULL DEFAULT '0' COMMENT '是否初始化场景 0:否 1:是', `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='组配置'; -- ---------------------------- -- Records of sj_group_config -- ---------------------------- BEGIN; INSERT INTO `sj_group_config` (`id`, `namespace_id`, `group_name`, `description`, `token`, `group_status`, `version`, `group_partition`, `id_generator_mode`, `init_scene`, `bucket_index`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', '', 'SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT', 1, 1, 0, 1, 1, 4, '2025-02-12 13:15:48', '2025-02-12 13:15:48'); COMMIT; -- ---------------------------- -- Table structure for sj_job -- ---------------------------- DROP TABLE IF EXISTS `sj_job`; CREATE TABLE `sj_job` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `job_name` varchar(64) NOT NULL COMMENT '名称', `args_str` text COMMENT '执行方法参数', `args_type` tinyint NOT NULL DEFAULT '1' COMMENT '参数类型 ', `next_trigger_at` bigint NOT NULL COMMENT '下次触发时间', `job_status` tinyint NOT NULL DEFAULT '1' COMMENT '任务状态 0、关闭、1、开启', `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、集群 2、广播 3、切片', `route_key` tinyint NOT NULL DEFAULT '4' COMMENT '路由策略', `executor_type` tinyint NOT NULL DEFAULT '1' COMMENT '执行器类型', `executor_info` varchar(255) DEFAULT NULL COMMENT '执行器名称', `trigger_type` tinyint NOT NULL COMMENT '触发类型 1.CRON 表达式 2. 固定时间', `trigger_interval` varchar(255) NOT NULL COMMENT '间隔时长', `block_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '阻塞策略 1、丢弃 2、覆盖 3、并行', `executor_timeout` int NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒', `max_retry_times` int NOT NULL DEFAULT '0' COMMENT '最大重试次数', `parallel_num` int NOT NULL DEFAULT '1' COMMENT '并行数', `retry_interval` int NOT NULL DEFAULT '0' COMMENT '重试间隔(s)', `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket', `resident` tinyint NOT NULL DEFAULT '0' COMMENT '是否是常驻任务', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`), KEY `idx_job_status_bucket_index` (`job_status`,`bucket_index`), KEY `idx_create_dt` (`create_dt`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务信息'; -- ---------------------------- -- Records of sj_job -- ---------------------------- BEGIN; INSERT INTO `sj_job` (`id`, `namespace_id`, `group_name`, `job_name`, `args_str`, `args_type`, `next_trigger_at`, `job_status`, `task_type`, `route_key`, `executor_type`, `executor_info`, `trigger_type`, `trigger_interval`, `block_strategy`, `executor_timeout`, `max_retry_times`, `parallel_num`, `retry_interval`, `bucket_index`, `resident`, `description`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', 'demo-job', '', 1, 1741241438700, 0, 1, 4, 1, 'testJobExecutor', 2, '60', 1, 60, 3, 1, 1, 116, 0, '', '', 0, '2025-02-12 13:15:48', '2025-03-06 14:09:39'); INSERT INTO `sj_job` (`id`, `namespace_id`, `group_name`, `job_name`, `args_str`, `args_type`, `next_trigger_at`, `job_status`, `task_type`, `route_key`, `executor_type`, `executor_info`, `trigger_type`, `trigger_interval`, `block_strategy`, `executor_timeout`, `max_retry_times`, `parallel_num`, `retry_interval`, `bucket_index`, `resident`, `description`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (2, 'dev', 'ruoyi_group', 'eims-maint-plan-order', '', 1, 1741335591085, 0, 1, 4, 1, 'maintPlanToOrderJob', 2, '30', 1, 60, 3, 1, 1, 7, 0, '保养计划生成保养工单', '', 0, '2025-03-07 09:21:30', '2025-03-07 16:19:34'); INSERT INTO `sj_job` (`id`, `namespace_id`, `group_name`, `job_name`, `args_str`, `args_type`, `next_trigger_at`, `job_status`, `task_type`, `route_key`, `executor_type`, `executor_info`, `trigger_type`, `trigger_interval`, `block_strategy`, `executor_timeout`, `max_retry_times`, `parallel_num`, `retry_interval`, `bucket_index`, `resident`, `description`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (3, 'dev', 'ruoyi_group', 'eims-insp-plan-record', '', 1, 1742365574472, 0, 1, 4, 1, 'inspectPlanToRecordJob', 2, '10', 1, 60, 3, 1, 1, 121, 0, '', '', 0, '2025-03-19 14:25:04', '2025-03-19 14:26:04'); COMMIT; -- ---------------------------- -- Table structure for sj_job_log_message -- ---------------------------- DROP TABLE IF EXISTS `sj_job_log_message`; CREATE TABLE `sj_job_log_message` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `job_id` bigint NOT NULL COMMENT '任务信息id', `task_batch_id` bigint NOT NULL COMMENT '任务批次id', `task_id` bigint NOT NULL COMMENT '调度任务id', `message` longtext NOT NULL COMMENT '调度信息', `log_num` int NOT NULL DEFAULT '1' COMMENT '日志数量', `real_time` bigint NOT NULL DEFAULT '0' COMMENT '上报时间', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_task_batch_id_task_id` (`task_batch_id`,`task_id`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB AUTO_INCREMENT=596 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='调度日志'; -- ---------------------------- -- Records of sj_job_log_message -- ---------------------------- BEGIN; INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (16, 'dev', 'ruoyi_group', 2, 265, 15, '[{\"time_stamp\":\"1741310500787\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-1\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310500887\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310500898\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-2\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310500968\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310500973\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-3\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310501008\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310501016\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-4\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310500787, '', '2025-03-07 09:21:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (17, 'dev', 'ruoyi_group', 2, 266, 16, '[{\"time_stamp\":\"1741310510573\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-5\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310510659\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310510664\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-6\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310510777\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310510789\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-7\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310510966\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310510975\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-8\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310510573, '', '2025-03-07 09:22:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (18, 'dev', 'ruoyi_group', 2, 267, 17, '[{\"time_stamp\":\"1741310520522\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-9\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310520615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310520623\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-10\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310520987\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310520997\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-11\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310521165\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310521173\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-12\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310520522, '', '2025-03-07 09:22:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (19, 'dev', 'ruoyi_group', 2, 268, 18, '[{\"time_stamp\":\"1741310530529\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-13\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310530637\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310530647\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-14\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310530901\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310530923\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-15\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310531005\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310531011\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-16\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310530529, '', '2025-03-07 09:22:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (20, 'dev', 'ruoyi_group', 2, 269, 19, '[{\"time_stamp\":\"1741310540474\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-1\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310540497\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310540506\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-2\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310540524\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310540528\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-3\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310540549\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310540555\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-4\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310540474, '', '2025-03-07 09:22:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (21, 'dev', 'ruoyi_group', 2, 270, 20, '[{\"time_stamp\":\"1741310550714\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-5\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310551028\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310551036\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-6\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310551074\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310551087\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-7\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310551125\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310551134\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-8\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310550714, '', '2025-03-07 09:22:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (22, 'dev', 'ruoyi_group', 2, 271, 21, '[{\"time_stamp\":\"1741310560548\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-9\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310560665\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310560675\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-10\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310561012\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310561019\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-11\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310561050\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310561064\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-12\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310560548, '', '2025-03-07 09:22:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (23, 'dev', 'ruoyi_group', 2, 272, 22, '[{\"time_stamp\":\"1741310570716\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-13\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310570985\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310570996\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-14\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310571087\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310571095\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-15\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310571263\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310571272\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-16\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310570716, '', '2025-03-07 09:23:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (24, 'dev', 'ruoyi_group', 2, 273, 23, '[{\"time_stamp\":\"1741310580489\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-1\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310580519\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310580532\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-2\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310580557\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310580564\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-3\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310580596\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310580606\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-4\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310580489, '', '2025-03-07 09:23:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (25, 'dev', 'ruoyi_group', 2, 274, 24, '[{\"time_stamp\":\"1741310590469\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-5\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310590539\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310590545\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-6\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310590608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310590611\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-7\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310590633\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310590637\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-8\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310590469, '', '2025-03-07 09:23:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (26, 'dev', 'ruoyi_group', 2, 275, 25, '[{\"time_stamp\":\"1741310600547\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-9\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310600615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310600623\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-10\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310600700\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310600707\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-11\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310600759\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310600765\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-12\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310600547, '', '2025-03-07 09:23:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (27, 'dev', 'ruoyi_group', 2, 276, 26, '[{\"time_stamp\":\"1741310610987\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-13\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310611688\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310611697\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-14\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310611827\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310611836\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-15\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"},{\"time_stamp\":\"1741310612206\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310612214\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-16\",\"message\":\"执行器配置有误. executorInfo:[a\'a]\"}]', 7, 1741310610987, '', '2025-03-07 09:23:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (28, 'dev', 'ruoyi_group', 2, 277, 27, '[{\"time_stamp\":\"1741310620743\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-1\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310620830\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310620837\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-2\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310620898\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310620903\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-3\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310621043\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310621051\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-4\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310620743, '', '2025-03-07 09:23:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (29, 'dev', 'ruoyi_group', 2, 278, 28, '[{\"time_stamp\":\"1741310626212\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-5\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310626272\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310626278\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-6\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310626349\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310626359\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-7\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310626390\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310626400\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-8\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310626212, '', '2025-03-07 09:23:57'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (30, 'dev', 'ruoyi_group', 2, 279, 29, '[{\"time_stamp\":\"1741310635765\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-9\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310635790\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310635794\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-10\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310635816\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310635819\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-11\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310635839\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310635843\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-12\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310635765, '', '2025-03-07 09:24:06'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (31, 'dev', 'ruoyi_group', 2, 280, 30, '[{\"time_stamp\":\"1741310645725\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-13\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310645797\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310645806\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-14\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310645896\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310645902\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-15\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310645931\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310645941\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-16\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310645725, '', '2025-03-07 09:24:16'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (32, 'dev', 'ruoyi_group', 2, 281, 31, '[{\"time_stamp\":\"1741310655712\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-1\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310655772\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310655775\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-2\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310656141\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310656149\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-3\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310656191\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310656217\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-4\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310655712, '', '2025-03-07 09:24:26'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (33, 'dev', 'ruoyi_group', 2, 282, 32, '[{\"time_stamp\":\"1741310665708\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-5\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310665752\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310665756\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-6\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310665817\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310665821\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-7\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310665896\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310665899\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-8\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310665708, '', '2025-03-07 09:24:36'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (34, 'dev', 'ruoyi_group', 2, 283, 33, '[{\"time_stamp\":\"1741310675669\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-9\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310675692\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310675695\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-10\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310675716\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310675722\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-11\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310675739\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310675742\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-12\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310675669, '', '2025-03-07 09:24:46'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (35, 'dev', 'ruoyi_group', 2, 284, 34, '[{\"time_stamp\":\"1741310685713\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-13\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310685815\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741310685819\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-14\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310685873\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741310685879\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-15\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"},{\"time_stamp\":\"1741310685925\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741310685931\",\"level\":\"ERROR\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:64)\",\"thread\":\"snail-netty-server-16\",\"message\":\"执行器配置有误. executorInfo:[maintPlanToOrderJob]\"}]', 7, 1741310685713, '', '2025-03-07 09:24:56'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (36, 'dev', 'ruoyi_group', 2, 311, 36, '[{\"time_stamp\":\"1741311049987\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[311] 任务调度成功. \"},{\"time_stamp\":\"1741311050056\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-311-1\",\"message\":\"任务执行成功 taskBatchId:[311] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311049987, '', '2025-03-07 09:31:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (37, 'dev', 'ruoyi_group', 2, 312, 37, '[{\"time_stamp\":\"1741311059602\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[312] 任务调度成功. \"},{\"time_stamp\":\"1741311059614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-312-1\",\"message\":\"任务执行成功 taskBatchId:[312] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311059602, '', '2025-03-07 09:31:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (38, 'dev', 'ruoyi_group', 2, 313, 38, '[{\"time_stamp\":\"1741311069610\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[313] 任务调度成功. \"},{\"time_stamp\":\"1741311069619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-313-1\",\"message\":\"任务执行成功 taskBatchId:[313] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311069610, '', '2025-03-07 09:31:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (39, 'dev', 'ruoyi_group', 2, 314, 39, '[{\"time_stamp\":\"1741311079601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[314] 任务调度成功. \"},{\"time_stamp\":\"1741311079614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-314-1\",\"message\":\"任务执行成功 taskBatchId:[314] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311079601, '', '2025-03-07 09:31:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (40, 'dev', 'ruoyi_group', 2, 315, 40, '[{\"time_stamp\":\"1741311089607\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[315] 任务调度成功. \"},{\"time_stamp\":\"1741311089617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-315-1\",\"message\":\"任务执行成功 taskBatchId:[315] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311089607, '', '2025-03-07 09:31:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (41, 'dev', 'ruoyi_group', 2, 316, 41, '[{\"time_stamp\":\"1741311099705\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[316] 任务调度成功. \"},{\"time_stamp\":\"1741311099715\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-316-1\",\"message\":\"任务执行成功 taskBatchId:[316] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311099705, '', '2025-03-07 09:31:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (42, 'dev', 'ruoyi_group', 2, 317, 42, '[{\"time_stamp\":\"1741311109608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[317] 任务调度成功. \"},{\"time_stamp\":\"1741311109621\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-317-1\",\"message\":\"任务执行成功 taskBatchId:[317] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311109608, '', '2025-03-07 09:32:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (43, 'dev', 'ruoyi_group', 2, 318, 43, '[{\"time_stamp\":\"1741311119729\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[318] 任务调度成功. \"},{\"time_stamp\":\"1741311119743\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-318-1\",\"message\":\"任务执行成功 taskBatchId:[318] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311119729, '', '2025-03-07 09:32:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (44, 'dev', 'ruoyi_group', 2, 319, 44, '[{\"time_stamp\":\"1741311129613\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[319] 任务调度成功. \"},{\"time_stamp\":\"1741311129624\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-319-1\",\"message\":\"任务执行成功 taskBatchId:[319] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311129613, '', '2025-03-07 09:32:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (45, 'dev', 'ruoyi_group', 2, 320, 45, '[{\"time_stamp\":\"1741311139605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[320] 任务调度成功. \"},{\"time_stamp\":\"1741311139614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-320-1\",\"message\":\"任务执行成功 taskBatchId:[320] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311139605, '', '2025-03-07 09:32:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (46, 'dev', 'ruoyi_group', 2, 321, 46, '[{\"time_stamp\":\"1741311149597\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[321] 任务调度成功. \"},{\"time_stamp\":\"1741311149605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-321-1\",\"message\":\"任务执行成功 taskBatchId:[321] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311149597, '', '2025-03-07 09:32:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (47, 'dev', 'ruoyi_group', 2, 322, 47, '[{\"time_stamp\":\"1741311159795\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[322] 任务调度成功. \"},{\"time_stamp\":\"1741311159807\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-322-1\",\"message\":\"任务执行成功 taskBatchId:[322] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311159795, '', '2025-03-07 09:32:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (48, 'dev', 'ruoyi_group', 2, 323, 48, '[{\"time_stamp\":\"1741311169604\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[323] 任务调度成功. \"},{\"time_stamp\":\"1741311169614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-323-1\",\"message\":\"任务执行成功 taskBatchId:[323] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311169604, '', '2025-03-07 09:33:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (49, 'dev', 'ruoyi_group', 2, 324, 49, '[{\"time_stamp\":\"1741311179606\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[324] 任务调度成功. \"},{\"time_stamp\":\"1741311179616\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-324-1\",\"message\":\"任务执行成功 taskBatchId:[324] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311179606, '', '2025-03-07 09:33:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (50, 'dev', 'ruoyi_group', 2, 325, 50, '[{\"time_stamp\":\"1741311189615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[325] 任务调度成功. \"},{\"time_stamp\":\"1741311189629\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-325-1\",\"message\":\"任务执行成功 taskBatchId:[325] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311189615, '', '2025-03-07 09:33:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (51, 'dev', 'ruoyi_group', 2, 326, 51, '[{\"time_stamp\":\"1741311199619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[326] 任务调度成功. \"},{\"time_stamp\":\"1741311199636\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-326-1\",\"message\":\"任务执行成功 taskBatchId:[326] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311199619, '', '2025-03-07 09:33:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (52, 'dev', 'ruoyi_group', 2, 327, 52, '[{\"time_stamp\":\"1741311209636\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[327] 任务调度成功. \"},{\"time_stamp\":\"1741311209659\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-327-1\",\"message\":\"任务执行成功 taskBatchId:[327] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311209636, '', '2025-03-07 09:33:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (53, 'dev', 'ruoyi_group', 2, 328, 53, '[{\"time_stamp\":\"1741311219721\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[328] 任务调度成功. \"},{\"time_stamp\":\"1741311219746\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-328-1\",\"message\":\"任务执行成功 taskBatchId:[328] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311219721, '', '2025-03-07 09:33:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (54, 'dev', 'ruoyi_group', 2, 329, 54, '[{\"time_stamp\":\"1741311229747\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[329] 任务调度成功. \"},{\"time_stamp\":\"1741311229759\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-329-1\",\"message\":\"任务执行成功 taskBatchId:[329] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311229747, '', '2025-03-07 09:34:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (55, 'dev', 'ruoyi_group', 2, 330, 55, '[{\"time_stamp\":\"1741311239639\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[330] 任务调度成功. \"},{\"time_stamp\":\"1741311239655\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-330-1\",\"message\":\"任务执行成功 taskBatchId:[330] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311239639, '', '2025-03-07 09:34:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (56, 'dev', 'ruoyi_group', 2, 331, 56, '[{\"time_stamp\":\"1741311249742\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[331] 任务调度成功. \"},{\"time_stamp\":\"1741311249785\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-331-1\",\"message\":\"任务执行成功 taskBatchId:[331] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311249742, '', '2025-03-07 09:34:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (57, 'dev', 'ruoyi_group', 2, 332, 57, '[{\"time_stamp\":\"1741311259805\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[332] 任务调度成功. \"},{\"time_stamp\":\"1741311259824\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-332-1\",\"message\":\"任务执行成功 taskBatchId:[332] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311259805, '', '2025-03-07 09:34:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (58, 'dev', 'ruoyi_group', 2, 333, 58, '[{\"time_stamp\":\"1741311269640\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[333] 任务调度成功. \"},{\"time_stamp\":\"1741311269663\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-333-1\",\"message\":\"任务执行成功 taskBatchId:[333] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311269640, '', '2025-03-07 09:34:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (59, 'dev', 'ruoyi_group', 2, 334, 59, '[{\"time_stamp\":\"1741311279634\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[334] 任务调度成功. \"},{\"time_stamp\":\"1741311279648\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-334-1\",\"message\":\"任务执行成功 taskBatchId:[334] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311279634, '', '2025-03-07 09:34:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (60, 'dev', 'ruoyi_group', 2, 335, 60, '[{\"time_stamp\":\"1741311289880\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[335] 任务调度成功. \"},{\"time_stamp\":\"1741311289897\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-335-1\",\"message\":\"任务执行成功 taskBatchId:[335] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311289880, '', '2025-03-07 09:35:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (61, 'dev', 'ruoyi_group', 2, 336, 61, '[{\"time_stamp\":\"1741311299605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[336] 任务调度成功. \"},{\"time_stamp\":\"1741311299626\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-336-1\",\"message\":\"任务执行成功 taskBatchId:[336] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311299605, '', '2025-03-07 09:35:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (62, 'dev', 'ruoyi_group', 2, 337, 62, '[{\"time_stamp\":\"1741311309715\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[337] 任务调度成功. \"},{\"time_stamp\":\"1741311309744\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-337-1\",\"message\":\"任务执行成功 taskBatchId:[337] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311309715, '', '2025-03-07 09:35:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (63, 'dev', 'ruoyi_group', 2, 338, 63, '[{\"time_stamp\":\"1741311319602\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[338] 任务调度成功. \"},{\"time_stamp\":\"1741311319619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-338-1\",\"message\":\"任务执行成功 taskBatchId:[338] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311319602, '', '2025-03-07 09:35:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (64, 'dev', 'ruoyi_group', 2, 339, 64, '[{\"time_stamp\":\"1741311329598\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[339] 任务调度成功. \"},{\"time_stamp\":\"1741311329612\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-339-1\",\"message\":\"任务执行成功 taskBatchId:[339] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311329598, '', '2025-03-07 09:35:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (65, 'dev', 'ruoyi_group', 2, 340, 65, '[{\"time_stamp\":\"1741311339663\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[340] 任务调度成功. \"},{\"time_stamp\":\"1741311339691\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-340-1\",\"message\":\"任务执行成功 taskBatchId:[340] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311339663, '', '2025-03-07 09:35:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (66, 'dev', 'ruoyi_group', 2, 341, 66, '[{\"time_stamp\":\"1741311349599\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[341] 任务调度成功. \"},{\"time_stamp\":\"1741311349615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-341-1\",\"message\":\"任务执行成功 taskBatchId:[341] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311349599, '', '2025-03-07 09:36:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (67, 'dev', 'ruoyi_group', 2, 342, 67, '[{\"time_stamp\":\"1741311359596\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[342] 任务调度成功. \"},{\"time_stamp\":\"1741311359608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-342-1\",\"message\":\"任务执行成功 taskBatchId:[342] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311359596, '', '2025-03-07 09:36:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (68, 'dev', 'ruoyi_group', 2, 343, 68, '[{\"time_stamp\":\"1741311369702\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[343] 任务调度成功. \"},{\"time_stamp\":\"1741311369739\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-343-1\",\"message\":\"任务执行成功 taskBatchId:[343] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311369702, '', '2025-03-07 09:36:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (69, 'dev', 'ruoyi_group', 2, 344, 69, '[{\"time_stamp\":\"1741311379723\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[344] 任务调度成功. \"},{\"time_stamp\":\"1741311379776\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-344-1\",\"message\":\"任务执行成功 taskBatchId:[344] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311379723, '', '2025-03-07 09:36:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (70, 'dev', 'ruoyi_group', 2, 345, 70, '[{\"time_stamp\":\"1741311389591\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[345] 任务调度成功. \"},{\"time_stamp\":\"1741311389606\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-345-1\",\"message\":\"任务执行成功 taskBatchId:[345] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311389591, '', '2025-03-07 09:36:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (71, 'dev', 'ruoyi_group', 2, 346, 71, '[{\"time_stamp\":\"1741311399606\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[346] 任务调度成功. \"},{\"time_stamp\":\"1741311399621\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-346-1\",\"message\":\"任务执行成功 taskBatchId:[346] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311399606, '', '2025-03-07 09:36:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (72, 'dev', 'ruoyi_group', 2, 347, 72, '[{\"time_stamp\":\"1741311409595\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[347] 任务调度成功. \"},{\"time_stamp\":\"1741311409608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-347-1\",\"message\":\"任务执行成功 taskBatchId:[347] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311409595, '', '2025-03-07 09:37:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (73, 'dev', 'ruoyi_group', 2, 348, 73, '[{\"time_stamp\":\"1741311419600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[348] 任务调度成功. \"},{\"time_stamp\":\"1741311419617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-348-1\",\"message\":\"任务执行成功 taskBatchId:[348] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311419600, '', '2025-03-07 09:37:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (74, 'dev', 'ruoyi_group', 2, 349, 74, '[{\"time_stamp\":\"1741311429694\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[349] 任务调度成功. \"},{\"time_stamp\":\"1741311429723\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-349-1\",\"message\":\"任务执行成功 taskBatchId:[349] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311429694, '', '2025-03-07 09:37:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (75, 'dev', 'ruoyi_group', 2, 350, 75, '[{\"time_stamp\":\"1741311439640\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[350] 任务调度成功. \"},{\"time_stamp\":\"1741311439657\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-350-1\",\"message\":\"任务执行成功 taskBatchId:[350] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311439640, '', '2025-03-07 09:37:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (76, 'dev', 'ruoyi_group', 2, 351, 76, '[{\"time_stamp\":\"1741311449618\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[351] 任务调度成功. \"},{\"time_stamp\":\"1741311449648\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-351-1\",\"message\":\"任务执行成功 taskBatchId:[351] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311449618, '', '2025-03-07 09:37:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (77, 'dev', 'ruoyi_group', 2, 352, 77, '[{\"time_stamp\":\"1741311459600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[352] 任务调度成功. \"},{\"time_stamp\":\"1741311459612\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-352-1\",\"message\":\"任务执行成功 taskBatchId:[352] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311459600, '', '2025-03-07 09:37:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (78, 'dev', 'ruoyi_group', 2, 353, 78, '[{\"time_stamp\":\"1741311469903\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[353] 任务调度成功. \"},{\"time_stamp\":\"1741311469933\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-353-1\",\"message\":\"任务执行成功 taskBatchId:[353] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311469903, '', '2025-03-07 09:38:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (79, 'dev', 'ruoyi_group', 2, 354, 79, '[{\"time_stamp\":\"1741311479599\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[354] 任务调度成功. \"},{\"time_stamp\":\"1741311479614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-354-1\",\"message\":\"任务执行成功 taskBatchId:[354] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311479599, '', '2025-03-07 09:38:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (80, 'dev', 'ruoyi_group', 2, 355, 80, '[{\"time_stamp\":\"1741311489596\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[355] 任务调度成功. \"},{\"time_stamp\":\"1741311489612\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-355-1\",\"message\":\"任务执行成功 taskBatchId:[355] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311489596, '', '2025-03-07 09:38:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (81, 'dev', 'ruoyi_group', 2, 356, 81, '[{\"time_stamp\":\"1741311499595\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[356] 任务调度成功. \"},{\"time_stamp\":\"1741311499610\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-356-1\",\"message\":\"任务执行成功 taskBatchId:[356] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311499595, '', '2025-03-07 09:38:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (82, 'dev', 'ruoyi_group', 2, 357, 82, '[{\"time_stamp\":\"1741311509603\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[357] 任务调度成功. \"},{\"time_stamp\":\"1741311509617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-357-1\",\"message\":\"任务执行成功 taskBatchId:[357] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311509603, '', '2025-03-07 09:38:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (83, 'dev', 'ruoyi_group', 2, 358, 83, '[{\"time_stamp\":\"1741311519647\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[358] 任务调度成功. \"},{\"time_stamp\":\"1741311519670\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-358-1\",\"message\":\"任务执行成功 taskBatchId:[358] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311519647, '', '2025-03-07 09:38:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (84, 'dev', 'ruoyi_group', 2, 359, 84, '[{\"time_stamp\":\"1741311529607\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[359] 任务调度成功. \"},{\"time_stamp\":\"1741311529641\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-359-1\",\"message\":\"任务执行成功 taskBatchId:[359] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311529607, '', '2025-03-07 09:39:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (85, 'dev', 'ruoyi_group', 2, 360, 85, '[{\"time_stamp\":\"1741311539602\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[360] 任务调度成功. \"},{\"time_stamp\":\"1741311539617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-360-1\",\"message\":\"任务执行成功 taskBatchId:[360] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311539602, '', '2025-03-07 09:39:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (86, 'dev', 'ruoyi_group', 2, 361, 86, '[{\"time_stamp\":\"1741311549700\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[361] 任务调度成功. \"},{\"time_stamp\":\"1741311549719\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-361-1\",\"message\":\"任务执行成功 taskBatchId:[361] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311549700, '', '2025-03-07 09:39:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (87, 'dev', 'ruoyi_group', 2, 362, 87, '[{\"time_stamp\":\"1741311560157\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[362] 任务调度成功. \"},{\"time_stamp\":\"1741311560172\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-362-1\",\"message\":\"任务执行成功 taskBatchId:[362] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311560157, '', '2025-03-07 09:39:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (88, 'dev', 'ruoyi_group', 2, 363, 88, '[{\"time_stamp\":\"1741311569997\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[363] 任务调度成功. \"},{\"time_stamp\":\"1741311570012\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-363-1\",\"message\":\"任务执行成功 taskBatchId:[363] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311569997, '', '2025-03-07 09:39:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (89, 'dev', 'ruoyi_group', 2, 364, 89, '[{\"time_stamp\":\"1741311579601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[364] 任务调度成功. \"},{\"time_stamp\":\"1741311579614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-364-1\",\"message\":\"任务执行成功 taskBatchId:[364] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311579601, '', '2025-03-07 09:39:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (90, 'dev', 'ruoyi_group', 2, 365, 90, '[{\"time_stamp\":\"1741311589599\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[365] 任务调度成功. \"},{\"time_stamp\":\"1741311589613\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-365-1\",\"message\":\"任务执行成功 taskBatchId:[365] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311589599, '', '2025-03-07 09:40:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (91, 'dev', 'ruoyi_group', 2, 366, 91, '[{\"time_stamp\":\"1741311599593\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[366] 任务调度成功. \"},{\"time_stamp\":\"1741311599607\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-366-1\",\"message\":\"任务执行成功 taskBatchId:[366] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311599593, '', '2025-03-07 09:40:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (92, 'dev', 'ruoyi_group', 2, 367, 92, '[{\"time_stamp\":\"1741311609601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[367] 任务调度成功. \"},{\"time_stamp\":\"1741311609636\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-367-1\",\"message\":\"任务执行成功 taskBatchId:[367] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311609601, '', '2025-03-07 09:40:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (93, 'dev', 'ruoyi_group', 2, 368, 93, '[{\"time_stamp\":\"1741311619594\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[368] 任务调度成功. \"},{\"time_stamp\":\"1741311619612\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-368-1\",\"message\":\"任务执行成功 taskBatchId:[368] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311619594, '', '2025-03-07 09:40:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (94, 'dev', 'ruoyi_group', 2, 369, 94, '[{\"time_stamp\":\"1741311629638\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[369] 任务调度成功. \"},{\"time_stamp\":\"1741311629650\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-369-1\",\"message\":\"任务执行成功 taskBatchId:[369] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311629638, '', '2025-03-07 09:40:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (95, 'dev', 'ruoyi_group', 2, 370, 95, '[{\"time_stamp\":\"1741311639810\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[370] 任务调度成功. \"},{\"time_stamp\":\"1741311639836\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-370-1\",\"message\":\"任务执行成功 taskBatchId:[370] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311639810, '', '2025-03-07 09:40:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (96, 'dev', 'ruoyi_group', 2, 371, 96, '[{\"time_stamp\":\"1741311649596\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[371] 任务调度成功. \"},{\"time_stamp\":\"1741311649609\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-371-1\",\"message\":\"任务执行成功 taskBatchId:[371] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311649596, '', '2025-03-07 09:41:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (97, 'dev', 'ruoyi_group', 2, 372, 97, '[{\"time_stamp\":\"1741311659605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[372] 任务调度成功. \"},{\"time_stamp\":\"1741311659623\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-372-1\",\"message\":\"任务执行成功 taskBatchId:[372] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311659605, '', '2025-03-07 09:41:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (98, 'dev', 'ruoyi_group', 2, 373, 98, '[{\"time_stamp\":\"1741311669597\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[373] 任务调度成功. \"},{\"time_stamp\":\"1741311669617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-373-1\",\"message\":\"任务执行成功 taskBatchId:[373] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311669597, '', '2025-03-07 09:41:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (99, 'dev', 'ruoyi_group', 2, 374, 99, '[{\"time_stamp\":\"1741311679646\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[374] 任务调度成功. \"},{\"time_stamp\":\"1741311679662\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-374-1\",\"message\":\"任务执行成功 taskBatchId:[374] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311679646, '', '2025-03-07 09:41:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (100, 'dev', 'ruoyi_group', 2, 375, 100, '[{\"time_stamp\":\"1741311689934\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[375] 任务调度成功. \"},{\"time_stamp\":\"1741311689948\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-375-1\",\"message\":\"任务执行成功 taskBatchId:[375] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311689934, '', '2025-03-07 09:41:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (101, 'dev', 'ruoyi_group', 2, 376, 101, '[{\"time_stamp\":\"1741311699852\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[376] 任务调度成功. \"},{\"time_stamp\":\"1741311699890\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-376-1\",\"message\":\"任务执行成功 taskBatchId:[376] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311699852, '', '2025-03-07 09:41:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (102, 'dev', 'ruoyi_group', 2, 377, 102, '[{\"time_stamp\":\"1741311709648\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[377] 任务调度成功. \"},{\"time_stamp\":\"1741311709793\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-377-1\",\"message\":\"任务执行成功 taskBatchId:[377] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311709648, '', '2025-03-07 09:42:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (103, 'dev', 'ruoyi_group', 2, 378, 103, '[{\"time_stamp\":\"1741311719701\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[378] 任务调度成功. \"},{\"time_stamp\":\"1741311719717\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-378-1\",\"message\":\"任务执行成功 taskBatchId:[378] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311719701, '', '2025-03-07 09:42:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (104, 'dev', 'ruoyi_group', 2, 379, 104, '[{\"time_stamp\":\"1741311729744\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[379] 任务调度成功. \"},{\"time_stamp\":\"1741311729762\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-379-1\",\"message\":\"任务执行成功 taskBatchId:[379] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311729744, '', '2025-03-07 09:42:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (105, 'dev', 'ruoyi_group', 2, 380, 105, '[{\"time_stamp\":\"1741311739596\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[380] 任务调度成功. \"},{\"time_stamp\":\"1741311739615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-380-1\",\"message\":\"任务执行成功 taskBatchId:[380] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311739596, '', '2025-03-07 09:42:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (106, 'dev', 'ruoyi_group', 2, 381, 106, '[{\"time_stamp\":\"1741311749604\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[381] 任务调度成功. \"},{\"time_stamp\":\"1741311749619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-381-1\",\"message\":\"任务执行成功 taskBatchId:[381] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311749604, '', '2025-03-07 09:42:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (107, 'dev', 'ruoyi_group', 2, 382, 107, '[{\"time_stamp\":\"1741311759752\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[382] 任务调度成功. \"},{\"time_stamp\":\"1741311759794\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-382-1\",\"message\":\"任务执行成功 taskBatchId:[382] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311759752, '', '2025-03-07 09:42:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (108, 'dev', 'ruoyi_group', 2, 383, 108, '[{\"time_stamp\":\"1741311769601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[383] 任务调度成功. \"},{\"time_stamp\":\"1741311769619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-383-1\",\"message\":\"任务执行成功 taskBatchId:[383] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311769601, '', '2025-03-07 09:43:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (109, 'dev', 'ruoyi_group', 2, 384, 109, '[{\"time_stamp\":\"1741311779726\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[384] 任务调度成功. \"},{\"time_stamp\":\"1741311779748\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-384-1\",\"message\":\"任务执行成功 taskBatchId:[384] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311779726, '', '2025-03-07 09:43:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (110, 'dev', 'ruoyi_group', 2, 385, 110, '[{\"time_stamp\":\"1741311789854\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[385] 任务调度成功. \"},{\"time_stamp\":\"1741311789874\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-385-1\",\"message\":\"任务执行成功 taskBatchId:[385] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311789854, '', '2025-03-07 09:43:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (111, 'dev', 'ruoyi_group', 2, 386, 111, '[{\"time_stamp\":\"1741311799705\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[386] 任务调度成功. \"},{\"time_stamp\":\"1741311799725\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-386-1\",\"message\":\"任务执行成功 taskBatchId:[386] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311799705, '', '2025-03-07 09:43:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (112, 'dev', 'ruoyi_group', 2, 387, 112, '[{\"time_stamp\":\"1741311809624\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[387] 任务调度成功. \"},{\"time_stamp\":\"1741311809645\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-387-1\",\"message\":\"任务执行成功 taskBatchId:[387] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311809624, '', '2025-03-07 09:43:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (113, 'dev', 'ruoyi_group', 2, 388, 113, '[{\"time_stamp\":\"1741311820139\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[388] 任务调度成功. \"},{\"time_stamp\":\"1741311820161\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-388-1\",\"message\":\"任务执行成功 taskBatchId:[388] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311820139, '', '2025-03-07 09:43:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (114, 'dev', 'ruoyi_group', 2, 389, 114, '[{\"time_stamp\":\"1741311829605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[389] 任务调度成功. \"},{\"time_stamp\":\"1741311829630\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-389-1\",\"message\":\"任务执行成功 taskBatchId:[389] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311829605, '', '2025-03-07 09:44:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (115, 'dev', 'ruoyi_group', 2, 390, 115, '[{\"time_stamp\":\"1741311839600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[390] 任务调度成功. \"},{\"time_stamp\":\"1741311839616\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-390-1\",\"message\":\"任务执行成功 taskBatchId:[390] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311839600, '', '2025-03-07 09:44:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (116, 'dev', 'ruoyi_group', 2, 391, 116, '[{\"time_stamp\":\"1741311849861\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[391] 任务调度成功. \"},{\"time_stamp\":\"1741311849879\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-391-1\",\"message\":\"任务执行成功 taskBatchId:[391] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311849861, '', '2025-03-07 09:44:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (117, 'dev', 'ruoyi_group', 2, 392, 117, '[{\"time_stamp\":\"1741311859600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[392] 任务调度成功. \"},{\"time_stamp\":\"1741311859616\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-392-1\",\"message\":\"任务执行成功 taskBatchId:[392] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311859600, '', '2025-03-07 09:44:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (118, 'dev', 'ruoyi_group', 2, 393, 118, '[{\"time_stamp\":\"1741311869604\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[393] 任务调度成功. \"},{\"time_stamp\":\"1741311869617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-393-1\",\"message\":\"任务执行成功 taskBatchId:[393] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311869604, '', '2025-03-07 09:44:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (119, 'dev', 'ruoyi_group', 2, 394, 119, '[{\"time_stamp\":\"1741311879606\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[394] 任务调度成功. \"},{\"time_stamp\":\"1741311879620\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-394-1\",\"message\":\"任务执行成功 taskBatchId:[394] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311879606, '', '2025-03-07 09:44:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (120, 'dev', 'ruoyi_group', 2, 395, 120, '[{\"time_stamp\":\"1741311889600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[395] 任务调度成功. \"},{\"time_stamp\":\"1741311889615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-395-1\",\"message\":\"任务执行成功 taskBatchId:[395] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311889600, '', '2025-03-07 09:45:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (121, 'dev', 'ruoyi_group', 2, 396, 121, '[{\"time_stamp\":\"1741311899607\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[396] 任务调度成功. \"},{\"time_stamp\":\"1741311899636\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-396-1\",\"message\":\"任务执行成功 taskBatchId:[396] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311899607, '', '2025-03-07 09:45:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (122, 'dev', 'ruoyi_group', 2, 397, 122, '[{\"time_stamp\":\"1741311909605\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[397] 任务调度成功. \"},{\"time_stamp\":\"1741311909621\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-397-1\",\"message\":\"任务执行成功 taskBatchId:[397] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311909605, '', '2025-03-07 09:45:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (123, 'dev', 'ruoyi_group', 2, 398, 123, '[{\"time_stamp\":\"1741311919603\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[398] 任务调度成功. \"},{\"time_stamp\":\"1741311919620\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-398-1\",\"message\":\"任务执行成功 taskBatchId:[398] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311919603, '', '2025-03-07 09:45:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (124, 'dev', 'ruoyi_group', 2, 399, 124, '[{\"time_stamp\":\"1741311929607\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[399] 任务调度成功. \"},{\"time_stamp\":\"1741311929626\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-399-1\",\"message\":\"任务执行成功 taskBatchId:[399] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311929607, '', '2025-03-07 09:45:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (125, 'dev', 'ruoyi_group', 2, 400, 125, '[{\"time_stamp\":\"1741311939614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[400] 任务调度成功. \"},{\"time_stamp\":\"1741311939628\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-400-1\",\"message\":\"任务执行成功 taskBatchId:[400] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311939614, '', '2025-03-07 09:45:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (126, 'dev', 'ruoyi_group', 2, 401, 126, '[{\"time_stamp\":\"1741311949600\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[401] 任务调度成功. \"},{\"time_stamp\":\"1741311949614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-401-1\",\"message\":\"任务执行成功 taskBatchId:[401] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311949600, '', '2025-03-07 09:46:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (127, 'dev', 'ruoyi_group', 2, 402, 127, '[{\"time_stamp\":\"1741311959601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[402] 任务调度成功. \"},{\"time_stamp\":\"1741311959617\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-402-1\",\"message\":\"任务执行成功 taskBatchId:[402] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311959601, '', '2025-03-07 09:46:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (128, 'dev', 'ruoyi_group', 2, 403, 128, '[{\"time_stamp\":\"1741311969608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[403] 任务调度成功. \"},{\"time_stamp\":\"1741311969626\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-403-1\",\"message\":\"任务执行成功 taskBatchId:[403] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741311969608, '', '2025-03-07 09:46:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (129, 'dev', 'ruoyi_group', 2, 405, 130, '[{\"time_stamp\":\"1741312029969\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[405] 任务调度成功. \"},{\"time_stamp\":\"1741312029986\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-405-1\",\"message\":\"任务执行成功 taskBatchId:[405] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312029969, '', '2025-03-07 09:47:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (130, 'dev', 'ruoyi_group', 2, 406, 131, '[{\"time_stamp\":\"1741312039780\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[406] 任务调度成功. \"},{\"time_stamp\":\"1741312039797\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-406-1\",\"message\":\"任务执行成功 taskBatchId:[406] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312039780, '', '2025-03-07 09:47:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (131, 'dev', 'ruoyi_group', 2, 407, 132, '[{\"time_stamp\":\"1741312049886\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[407] 任务调度成功. \"},{\"time_stamp\":\"1741312049904\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-407-1\",\"message\":\"任务执行成功 taskBatchId:[407] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312049886, '', '2025-03-07 09:47:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (132, 'dev', 'ruoyi_group', 2, 408, 133, '[{\"time_stamp\":\"1741312059822\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[408] 任务调度成功. \"},{\"time_stamp\":\"1741312059846\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-408-1\",\"message\":\"任务执行成功 taskBatchId:[408] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312059822, '', '2025-03-07 09:47:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (133, 'dev', 'ruoyi_group', 2, 409, 134, '[{\"time_stamp\":\"1741312069781\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[409] 任务调度成功. \"},{\"time_stamp\":\"1741312069794\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-409-1\",\"message\":\"任务执行成功 taskBatchId:[409] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312069781, '', '2025-03-07 09:48:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (134, 'dev', 'ruoyi_group', 2, 410, 135, '[{\"time_stamp\":\"1741312079873\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[410] 任务调度成功. \"},{\"time_stamp\":\"1741312079890\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-410-1\",\"message\":\"任务执行成功 taskBatchId:[410] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312079873, '', '2025-03-07 09:48:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (135, 'dev', 'ruoyi_group', 2, 411, 136, '[{\"time_stamp\":\"1741312089783\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[411] 任务调度成功. \"},{\"time_stamp\":\"1741312089799\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-411-1\",\"message\":\"任务执行成功 taskBatchId:[411] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312089783, '', '2025-03-07 09:48:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (136, 'dev', 'ruoyi_group', 2, 412, 137, '[{\"time_stamp\":\"1741312099781\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[412] 任务调度成功. \"},{\"time_stamp\":\"1741312099813\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-412-1\",\"message\":\"任务执行成功 taskBatchId:[412] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312099781, '', '2025-03-07 09:48:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (137, 'dev', 'ruoyi_group', 2, 413, 138, '[{\"time_stamp\":\"1741312109777\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[413] 任务调度成功. \"},{\"time_stamp\":\"1741312109798\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-413-1\",\"message\":\"任务执行成功 taskBatchId:[413] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312109777, '', '2025-03-07 09:48:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (138, 'dev', 'ruoyi_group', 2, 414, 139, '[{\"time_stamp\":\"1741312119812\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[414] 任务调度成功. \"},{\"time_stamp\":\"1741312119826\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-414-1\",\"message\":\"任务执行成功 taskBatchId:[414] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312119812, '', '2025-03-07 09:48:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (139, 'dev', 'ruoyi_group', 2, 415, 140, '[{\"time_stamp\":\"1741312129781\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[415] 任务调度成功. \"},{\"time_stamp\":\"1741312129795\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-415-1\",\"message\":\"任务执行成功 taskBatchId:[415] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312129781, '', '2025-03-07 09:49:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (140, 'dev', 'ruoyi_group', 2, 416, 141, '[{\"time_stamp\":\"1741312139785\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[416] 任务调度成功. \"},{\"time_stamp\":\"1741312139814\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-416-1\",\"message\":\"任务执行成功 taskBatchId:[416] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312139785, '', '2025-03-07 09:49:10'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (141, 'dev', 'ruoyi_group', 2, 417, 142, '[{\"time_stamp\":\"1741312149777\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[417] 任务调度成功. \"},{\"time_stamp\":\"1741312149795\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-417-1\",\"message\":\"任务执行成功 taskBatchId:[417] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312149777, '', '2025-03-07 09:49:20'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (142, 'dev', 'ruoyi_group', 2, 418, 143, '[{\"time_stamp\":\"1741312159838\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[418] 任务调度成功. \"},{\"time_stamp\":\"1741312159857\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-418-1\",\"message\":\"任务执行成功 taskBatchId:[418] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312159838, '', '2025-03-07 09:49:30'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (143, 'dev', 'ruoyi_group', 2, 419, 144, '[{\"time_stamp\":\"1741312169774\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[419] 任务调度成功. \"},{\"time_stamp\":\"1741312169787\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-419-1\",\"message\":\"任务执行成功 taskBatchId:[419] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312169774, '', '2025-03-07 09:49:40'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (144, 'dev', 'ruoyi_group', 2, 420, 145, '[{\"time_stamp\":\"1741312179782\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[420] 任务调度成功. \"},{\"time_stamp\":\"1741312179804\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-420-1\",\"message\":\"任务执行成功 taskBatchId:[420] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312179782, '', '2025-03-07 09:49:50'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (145, 'dev', 'ruoyi_group', 2, 421, 146, '[{\"time_stamp\":\"1741312189765\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[421] 任务调度成功. \"},{\"time_stamp\":\"1741312189778\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-421-1\",\"message\":\"任务执行成功 taskBatchId:[421] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312189765, '', '2025-03-07 09:50:00'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (177, 'dev', 'ruoyi_group', 2, 467, 157, '[{\"time_stamp\":\"1741312741453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[467] 任务调度成功. \"},{\"time_stamp\":\"1741312741464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-467-1\",\"message\":\"任务执行成功 taskBatchId:[467] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312741453, '', '2025-03-07 09:59:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (179, 'dev', 'ruoyi_group', 2, 468, 158, '[{\"time_stamp\":\"1741312751468\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[468] 任务调度成功. \"},{\"time_stamp\":\"1741312751491\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-468-1\",\"message\":\"任务执行成功 taskBatchId:[468] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312751468, '', '2025-03-07 09:59:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (180, 'dev', 'ruoyi_group', 2, 469, 159, '[{\"time_stamp\":\"1741312761540\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[469] 任务调度成功. \"},{\"time_stamp\":\"1741312761562\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-469-1\",\"message\":\"任务执行成功 taskBatchId:[469] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312761540, '', '2025-03-07 09:59:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (181, 'dev', 'ruoyi_group', 2, 470, 160, '[{\"time_stamp\":\"1741312771448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[470] 任务调度成功. \"},{\"time_stamp\":\"1741312771464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-470-1\",\"message\":\"任务执行成功 taskBatchId:[470] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312771448, '', '2025-03-07 09:59:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (182, 'dev', 'ruoyi_group', 2, 471, 161, '[{\"time_stamp\":\"1741312781448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[471] 任务调度成功. \"},{\"time_stamp\":\"1741312781458\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-471-1\",\"message\":\"任务执行成功 taskBatchId:[471] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312781448, '', '2025-03-07 09:59:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (183, 'dev', 'ruoyi_group', 2, 472, 162, '[{\"time_stamp\":\"1741312791450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[472] 任务调度成功. \"},{\"time_stamp\":\"1741312791459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-472-1\",\"message\":\"任务执行成功 taskBatchId:[472] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312791450, '', '2025-03-07 10:00:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (184, 'dev', 'ruoyi_group', 2, 473, 163, '[{\"time_stamp\":\"1741312801446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[473] 任务调度成功. \"},{\"time_stamp\":\"1741312801456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-473-1\",\"message\":\"任务执行成功 taskBatchId:[473] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312801446, '', '2025-03-07 10:00:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (185, 'dev', 'ruoyi_group', 2, 474, 164, '[{\"time_stamp\":\"1741312811454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[474] 任务调度成功. \"},{\"time_stamp\":\"1741312811464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-474-1\",\"message\":\"任务执行成功 taskBatchId:[474] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312811454, '', '2025-03-07 10:00:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (186, 'dev', 'ruoyi_group', 2, 475, 165, '[{\"time_stamp\":\"1741312821450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[475] 任务调度成功. \"},{\"time_stamp\":\"1741312821459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-475-1\",\"message\":\"任务执行成功 taskBatchId:[475] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312821450, '', '2025-03-07 10:00:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (187, 'dev', 'ruoyi_group', 2, 476, 166, '[{\"time_stamp\":\"1741312831444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[476] 任务调度成功. \"},{\"time_stamp\":\"1741312831455\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-476-1\",\"message\":\"任务执行成功 taskBatchId:[476] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312831444, '', '2025-03-07 10:00:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (188, 'dev', 'ruoyi_group', 2, 477, 167, '[{\"time_stamp\":\"1741312841448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[477] 任务调度成功. \"},{\"time_stamp\":\"1741312841467\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-477-1\",\"message\":\"任务执行成功 taskBatchId:[477] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312841448, '', '2025-03-07 10:00:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (189, 'dev', 'ruoyi_group', 2, 478, 168, '[{\"time_stamp\":\"1741312851445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[478] 任务调度成功. \"},{\"time_stamp\":\"1741312851464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-478-1\",\"message\":\"任务执行成功 taskBatchId:[478] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312851445, '', '2025-03-07 10:01:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (190, 'dev', 'ruoyi_group', 2, 479, 169, '[{\"time_stamp\":\"1741312861485\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[479] 任务调度成功. \"},{\"time_stamp\":\"1741312861504\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-479-1\",\"message\":\"任务执行成功 taskBatchId:[479] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312861485, '', '2025-03-07 10:01:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (191, 'dev', 'ruoyi_group', 2, 480, 170, '[{\"time_stamp\":\"1741312871447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[480] 任务调度成功. \"},{\"time_stamp\":\"1741312871461\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-480-1\",\"message\":\"任务执行成功 taskBatchId:[480] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312871447, '', '2025-03-07 10:01:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (192, 'dev', 'ruoyi_group', 2, 481, 171, '[{\"time_stamp\":\"1741312881438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[481] 任务调度成功. \"},{\"time_stamp\":\"1741312881454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-481-1\",\"message\":\"任务执行成功 taskBatchId:[481] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312881438, '', '2025-03-07 10:01:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (193, 'dev', 'ruoyi_group', 2, 482, 172, '[{\"time_stamp\":\"1741312891438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[482] 任务调度成功. \"},{\"time_stamp\":\"1741312891451\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-482-1\",\"message\":\"任务执行成功 taskBatchId:[482] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312891438, '', '2025-03-07 10:01:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (194, 'dev', 'ruoyi_group', 2, 483, 173, '[{\"time_stamp\":\"1741312901611\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[483] 任务调度成功. \"},{\"time_stamp\":\"1741312901628\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-483-1\",\"message\":\"任务执行成功 taskBatchId:[483] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312901611, '', '2025-03-07 10:01:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (195, 'dev', 'ruoyi_group', 2, 484, 174, '[{\"time_stamp\":\"1741312911439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[484] 任务调度成功. \"},{\"time_stamp\":\"1741312911456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-484-1\",\"message\":\"任务执行成功 taskBatchId:[484] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312911439, '', '2025-03-07 10:02:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (196, 'dev', 'ruoyi_group', 2, 485, 175, '[{\"time_stamp\":\"1741312921440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[485] 任务调度成功. \"},{\"time_stamp\":\"1741312921454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-485-1\",\"message\":\"任务执行成功 taskBatchId:[485] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312921440, '', '2025-03-07 10:02:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (197, 'dev', 'ruoyi_group', 2, 486, 176, '[{\"time_stamp\":\"1741312931439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[486] 任务调度成功. \"},{\"time_stamp\":\"1741312931453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-486-1\",\"message\":\"任务执行成功 taskBatchId:[486] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312931439, '', '2025-03-07 10:02:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (198, 'dev', 'ruoyi_group', 2, 487, 177, '[{\"time_stamp\":\"1741312941475\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[487] 任务调度成功. \"},{\"time_stamp\":\"1741312941488\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-487-1\",\"message\":\"任务执行成功 taskBatchId:[487] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312941475, '', '2025-03-07 10:02:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (199, 'dev', 'ruoyi_group', 2, 488, 178, '[{\"time_stamp\":\"1741312951435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[488] 任务调度成功. \"},{\"time_stamp\":\"1741312951453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-488-1\",\"message\":\"任务执行成功 taskBatchId:[488] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312951435, '', '2025-03-07 10:02:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (200, 'dev', 'ruoyi_group', 2, 489, 179, '[{\"time_stamp\":\"1741312961443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[489] 任务调度成功. \"},{\"time_stamp\":\"1741312961458\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-489-1\",\"message\":\"任务执行成功 taskBatchId:[489] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312961443, '', '2025-03-07 10:02:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (201, 'dev', 'ruoyi_group', 2, 490, 180, '[{\"time_stamp\":\"1741312971436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[490] 任务调度成功. \"},{\"time_stamp\":\"1741312971457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-490-1\",\"message\":\"任务执行成功 taskBatchId:[490] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312971436, '', '2025-03-07 10:03:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (202, 'dev', 'ruoyi_group', 2, 491, 181, '[{\"time_stamp\":\"1741312981432\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[491] 任务调度成功. \"},{\"time_stamp\":\"1741312981445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-491-1\",\"message\":\"任务执行成功 taskBatchId:[491] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312981432, '', '2025-03-07 10:03:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (203, 'dev', 'ruoyi_group', 2, 492, 182, '[{\"time_stamp\":\"1741312991436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[492] 任务调度成功. \"},{\"time_stamp\":\"1741312991451\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-492-1\",\"message\":\"任务执行成功 taskBatchId:[492] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741312991436, '', '2025-03-07 10:03:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (204, 'dev', 'ruoyi_group', 2, 493, 183, '[{\"time_stamp\":\"1741313001431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[493] 任务调度成功. \"},{\"time_stamp\":\"1741313001447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-493-1\",\"message\":\"任务执行成功 taskBatchId:[493] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313001431, '', '2025-03-07 10:03:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (205, 'dev', 'ruoyi_group', 2, 494, 184, '[{\"time_stamp\":\"1741313011434\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[494] 任务调度成功. \"},{\"time_stamp\":\"1741313011449\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-494-1\",\"message\":\"任务执行成功 taskBatchId:[494] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313011434, '', '2025-03-07 10:03:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (206, 'dev', 'ruoyi_group', 2, 495, 185, '[{\"time_stamp\":\"1741313021436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[495] 任务调度成功. \"},{\"time_stamp\":\"1741313021453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-495-1\",\"message\":\"任务执行成功 taskBatchId:[495] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313021436, '', '2025-03-07 10:03:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (207, 'dev', 'ruoyi_group', 2, 496, 186, '[{\"time_stamp\":\"1741313031431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[496] 任务调度成功. \"},{\"time_stamp\":\"1741313031446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-496-1\",\"message\":\"任务执行成功 taskBatchId:[496] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313031431, '', '2025-03-07 10:04:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (208, 'dev', 'ruoyi_group', 2, 497, 187, '[{\"time_stamp\":\"1741313041437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[497] 任务调度成功. \"},{\"time_stamp\":\"1741313041453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-497-1\",\"message\":\"任务执行成功 taskBatchId:[497] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313041437, '', '2025-03-07 10:04:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (209, 'dev', 'ruoyi_group', 2, 498, 188, '[{\"time_stamp\":\"1741313051435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[498] 任务调度成功. \"},{\"time_stamp\":\"1741313051450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-498-1\",\"message\":\"任务执行成功 taskBatchId:[498] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313051435, '', '2025-03-07 10:04:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (210, 'dev', 'ruoyi_group', 2, 499, 189, '[{\"time_stamp\":\"1741313061429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[499] 任务调度成功. \"},{\"time_stamp\":\"1741313061445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-499-1\",\"message\":\"任务执行成功 taskBatchId:[499] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313061429, '', '2025-03-07 10:04:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (211, 'dev', 'ruoyi_group', 2, 500, 190, '[{\"time_stamp\":\"1741313071435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[500] 任务调度成功. \"},{\"time_stamp\":\"1741313071448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-500-1\",\"message\":\"任务执行成功 taskBatchId:[500] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313071435, '', '2025-03-07 10:04:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (212, 'dev', 'ruoyi_group', 2, 501, 191, '[{\"time_stamp\":\"1741313081435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[501] 任务调度成功. \"},{\"time_stamp\":\"1741313081451\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-501-1\",\"message\":\"任务执行成功 taskBatchId:[501] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313081435, '', '2025-03-07 10:04:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (213, 'dev', 'ruoyi_group', 2, 502, 192, '[{\"time_stamp\":\"1741313091430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[502] 任务调度成功. \"},{\"time_stamp\":\"1741313091444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-502-1\",\"message\":\"任务执行成功 taskBatchId:[502] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313091430, '', '2025-03-07 10:05:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (214, 'dev', 'ruoyi_group', 2, 503, 193, '[{\"time_stamp\":\"1741313101473\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[503] 任务调度成功. \"},{\"time_stamp\":\"1741313101489\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-503-1\",\"message\":\"任务执行成功 taskBatchId:[503] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313101473, '', '2025-03-07 10:05:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (215, 'dev', 'ruoyi_group', 2, 504, 194, '[{\"time_stamp\":\"1741313111509\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[504] 任务调度成功. \"},{\"time_stamp\":\"1741313111527\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-504-1\",\"message\":\"任务执行成功 taskBatchId:[504] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313111509, '', '2025-03-07 10:05:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (216, 'dev', 'ruoyi_group', 2, 505, 195, '[{\"time_stamp\":\"1741313121433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[505] 任务调度成功. \"},{\"time_stamp\":\"1741313121449\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-505-1\",\"message\":\"任务执行成功 taskBatchId:[505] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313121433, '', '2025-03-07 10:05:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (217, 'dev', 'ruoyi_group', 2, 506, 196, '[{\"time_stamp\":\"1741313131436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[506] 任务调度成功. \"},{\"time_stamp\":\"1741313131449\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-506-1\",\"message\":\"任务执行成功 taskBatchId:[506] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313131436, '', '2025-03-07 10:05:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (218, 'dev', 'ruoyi_group', 2, 507, 197, '[{\"time_stamp\":\"1741313141427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[507] 任务调度成功. \"},{\"time_stamp\":\"1741313141441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-507-1\",\"message\":\"任务执行成功 taskBatchId:[507] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313141427, '', '2025-03-07 10:05:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (219, 'dev', 'ruoyi_group', 2, 508, 198, '[{\"time_stamp\":\"1741313151470\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[508] 任务调度成功. \"},{\"time_stamp\":\"1741313151487\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-508-1\",\"message\":\"任务执行成功 taskBatchId:[508] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313151470, '', '2025-03-07 10:06:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (220, 'dev', 'ruoyi_group', 2, 509, 199, '[{\"time_stamp\":\"1741313161441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[509] 任务调度成功. \"},{\"time_stamp\":\"1741313161456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-509-1\",\"message\":\"任务执行成功 taskBatchId:[509] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313161441, '', '2025-03-07 10:06:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (221, 'dev', 'ruoyi_group', 2, 510, 200, '[{\"time_stamp\":\"1741313171428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[510] 任务调度成功. \"},{\"time_stamp\":\"1741313171444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-510-1\",\"message\":\"任务执行成功 taskBatchId:[510] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313171428, '', '2025-03-07 10:06:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (222, 'dev', 'ruoyi_group', 2, 511, 201, '[{\"time_stamp\":\"1741313181427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[511] 任务调度成功. \"},{\"time_stamp\":\"1741313181439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-511-1\",\"message\":\"任务执行成功 taskBatchId:[511] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313181427, '', '2025-03-07 10:06:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (223, 'dev', 'ruoyi_group', 2, 512, 202, '[{\"time_stamp\":\"1741313191425\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[512] 任务调度成功. \"},{\"time_stamp\":\"1741313191456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-512-1\",\"message\":\"任务执行成功 taskBatchId:[512] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313191425, '', '2025-03-07 10:06:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (224, 'dev', 'ruoyi_group', 2, 513, 203, '[{\"time_stamp\":\"1741313201440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[513] 任务调度成功. \"},{\"time_stamp\":\"1741313201459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-513-1\",\"message\":\"任务执行成功 taskBatchId:[513] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313201440, '', '2025-03-07 10:06:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (225, 'dev', 'ruoyi_group', 2, 514, 204, '[{\"time_stamp\":\"1741313211430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[514] 任务调度成功. \"},{\"time_stamp\":\"1741313211448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-514-1\",\"message\":\"任务执行成功 taskBatchId:[514] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313211430, '', '2025-03-07 10:07:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (226, 'dev', 'ruoyi_group', 2, 515, 205, '[{\"time_stamp\":\"1741313221431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[515] 任务调度成功. \"},{\"time_stamp\":\"1741313221446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-515-1\",\"message\":\"任务执行成功 taskBatchId:[515] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313221431, '', '2025-03-07 10:07:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (227, 'dev', 'ruoyi_group', 2, 516, 206, '[{\"time_stamp\":\"1741313231425\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[516] 任务调度成功. \"},{\"time_stamp\":\"1741313231443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-516-1\",\"message\":\"任务执行成功 taskBatchId:[516] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313231425, '', '2025-03-07 10:07:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (228, 'dev', 'ruoyi_group', 2, 517, 207, '[{\"time_stamp\":\"1741313241422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[517] 任务调度成功. \"},{\"time_stamp\":\"1741313241438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-517-1\",\"message\":\"任务执行成功 taskBatchId:[517] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313241422, '', '2025-03-07 10:07:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (229, 'dev', 'ruoyi_group', 2, 518, 208, '[{\"time_stamp\":\"1741313251431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[518] 任务调度成功. \"},{\"time_stamp\":\"1741313251454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-518-1\",\"message\":\"任务执行成功 taskBatchId:[518] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313251431, '', '2025-03-07 10:07:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (230, 'dev', 'ruoyi_group', 2, 519, 209, '[{\"time_stamp\":\"1741313261499\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[519] 任务调度成功. \"},{\"time_stamp\":\"1741313261513\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-519-1\",\"message\":\"任务执行成功 taskBatchId:[519] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313261499, '', '2025-03-07 10:07:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (231, 'dev', 'ruoyi_group', 2, 520, 210, '[{\"time_stamp\":\"1741313271432\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[520] 任务调度成功. \"},{\"time_stamp\":\"1741313271444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-520-1\",\"message\":\"任务执行成功 taskBatchId:[520] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313271432, '', '2025-03-07 10:08:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (232, 'dev', 'ruoyi_group', 2, 521, 211, '[{\"time_stamp\":\"1741313281421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[521] 任务调度成功. \"},{\"time_stamp\":\"1741313281437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-521-1\",\"message\":\"任务执行成功 taskBatchId:[521] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313281421, '', '2025-03-07 10:08:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (233, 'dev', 'ruoyi_group', 2, 522, 212, '[{\"time_stamp\":\"1741313291438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[522] 任务调度成功. \"},{\"time_stamp\":\"1741313291459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-522-1\",\"message\":\"任务执行成功 taskBatchId:[522] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313291438, '', '2025-03-07 10:08:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (234, 'dev', 'ruoyi_group', 2, 523, 213, '[{\"time_stamp\":\"1741313301427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[523] 任务调度成功. \"},{\"time_stamp\":\"1741313301442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-523-1\",\"message\":\"任务执行成功 taskBatchId:[523] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313301427, '', '2025-03-07 10:08:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (235, 'dev', 'ruoyi_group', 2, 524, 214, '[{\"time_stamp\":\"1741313311426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[524] 任务调度成功. \"},{\"time_stamp\":\"1741313311442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-524-1\",\"message\":\"任务执行成功 taskBatchId:[524] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313311426, '', '2025-03-07 10:08:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (236, 'dev', 'ruoyi_group', 2, 525, 215, '[{\"time_stamp\":\"1741313321424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[525] 任务调度成功. \"},{\"time_stamp\":\"1741313321440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-525-1\",\"message\":\"任务执行成功 taskBatchId:[525] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313321424, '', '2025-03-07 10:08:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (237, 'dev', 'ruoyi_group', 2, 526, 216, '[{\"time_stamp\":\"1741313331424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[526] 任务调度成功. \"},{\"time_stamp\":\"1741313331439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-526-1\",\"message\":\"任务执行成功 taskBatchId:[526] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313331424, '', '2025-03-07 10:09:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (238, 'dev', 'ruoyi_group', 2, 527, 217, '[{\"time_stamp\":\"1741313341427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[527] 任务调度成功. \"},{\"time_stamp\":\"1741313341463\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-527-1\",\"message\":\"任务执行成功 taskBatchId:[527] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313341427, '', '2025-03-07 10:09:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (239, 'dev', 'ruoyi_group', 2, 528, 218, '[{\"time_stamp\":\"1741313351428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[528] 任务调度成功. \"},{\"time_stamp\":\"1741313351444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-528-1\",\"message\":\"任务执行成功 taskBatchId:[528] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313351428, '', '2025-03-07 10:09:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (240, 'dev', 'ruoyi_group', 2, 529, 219, '[{\"time_stamp\":\"1741313361420\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[529] 任务调度成功. \"},{\"time_stamp\":\"1741313361433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-529-1\",\"message\":\"任务执行成功 taskBatchId:[529] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313361420, '', '2025-03-07 10:09:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (241, 'dev', 'ruoyi_group', 2, 530, 220, '[{\"time_stamp\":\"1741313371448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[530] 任务调度成功. \"},{\"time_stamp\":\"1741313371464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-530-1\",\"message\":\"任务执行成功 taskBatchId:[530] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313371448, '', '2025-03-07 10:09:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (242, 'dev', 'ruoyi_group', 2, 531, 221, '[{\"time_stamp\":\"1741313381422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[531] 任务调度成功. \"},{\"time_stamp\":\"1741313381435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-531-1\",\"message\":\"任务执行成功 taskBatchId:[531] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313381422, '', '2025-03-07 10:09:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (243, 'dev', 'ruoyi_group', 2, 532, 222, '[{\"time_stamp\":\"1741313391422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[532] 任务调度成功. \"},{\"time_stamp\":\"1741313391437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-532-1\",\"message\":\"任务执行成功 taskBatchId:[532] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313391422, '', '2025-03-07 10:10:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (244, 'dev', 'ruoyi_group', 2, 533, 223, '[{\"time_stamp\":\"1741313401421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[533] 任务调度成功. \"},{\"time_stamp\":\"1741313401435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-533-1\",\"message\":\"任务执行成功 taskBatchId:[533] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313401421, '', '2025-03-07 10:10:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (245, 'dev', 'ruoyi_group', 2, 534, 224, '[{\"time_stamp\":\"1741313411423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[534] 任务调度成功. \"},{\"time_stamp\":\"1741313411440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-534-1\",\"message\":\"任务执行成功 taskBatchId:[534] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313411423, '', '2025-03-07 10:10:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (246, 'dev', 'ruoyi_group', 2, 535, 225, '[{\"time_stamp\":\"1741313421422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[535] 任务调度成功. \"},{\"time_stamp\":\"1741313421435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-535-1\",\"message\":\"任务执行成功 taskBatchId:[535] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313421422, '', '2025-03-07 10:10:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (247, 'dev', 'ruoyi_group', 2, 536, 226, '[{\"time_stamp\":\"1741313431423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[536] 任务调度成功. \"},{\"time_stamp\":\"1741313431438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-536-1\",\"message\":\"任务执行成功 taskBatchId:[536] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313431423, '', '2025-03-07 10:10:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (248, 'dev', 'ruoyi_group', 2, 537, 227, '[{\"time_stamp\":\"1741313441419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[537] 任务调度成功. \"},{\"time_stamp\":\"1741313441438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-537-1\",\"message\":\"任务执行成功 taskBatchId:[537] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313441419, '', '2025-03-07 10:10:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (249, 'dev', 'ruoyi_group', 2, 538, 228, '[{\"time_stamp\":\"1741313451415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[538] 任务调度成功. \"},{\"time_stamp\":\"1741313451429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-538-1\",\"message\":\"任务执行成功 taskBatchId:[538] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313451415, '', '2025-03-07 10:11:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (250, 'dev', 'ruoyi_group', 2, 539, 229, '[{\"time_stamp\":\"1741313461417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[539] 任务调度成功. \"},{\"time_stamp\":\"1741313461430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-539-1\",\"message\":\"任务执行成功 taskBatchId:[539] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313461417, '', '2025-03-07 10:11:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (251, 'dev', 'ruoyi_group', 2, 540, 230, '[{\"time_stamp\":\"1741313471457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[540] 任务调度成功. \"},{\"time_stamp\":\"1741313471503\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-540-1\",\"message\":\"任务执行成功 taskBatchId:[540] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313471457, '', '2025-03-07 10:11:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (252, 'dev', 'ruoyi_group', 2, 541, 231, '[{\"time_stamp\":\"1741313481423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[541] 任务调度成功. \"},{\"time_stamp\":\"1741313481438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-541-1\",\"message\":\"任务执行成功 taskBatchId:[541] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313481423, '', '2025-03-07 10:11:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (253, 'dev', 'ruoyi_group', 2, 542, 232, '[{\"time_stamp\":\"1741313491410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[542] 任务调度成功. \"},{\"time_stamp\":\"1741313491430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-542-1\",\"message\":\"任务执行成功 taskBatchId:[542] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313491410, '', '2025-03-07 10:11:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (254, 'dev', 'ruoyi_group', 2, 543, 233, '[{\"time_stamp\":\"1741313501415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[543] 任务调度成功. \"},{\"time_stamp\":\"1741313501429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-543-1\",\"message\":\"任务执行成功 taskBatchId:[543] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313501415, '', '2025-03-07 10:11:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (255, 'dev', 'ruoyi_group', 2, 544, 234, '[{\"time_stamp\":\"1741313511417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[544] 任务调度成功. \"},{\"time_stamp\":\"1741313511430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-544-1\",\"message\":\"任务执行成功 taskBatchId:[544] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313511417, '', '2025-03-07 10:12:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (256, 'dev', 'ruoyi_group', 2, 545, 235, '[{\"time_stamp\":\"1741313521413\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[545] 任务调度成功. \"},{\"time_stamp\":\"1741313521430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-545-1\",\"message\":\"任务执行成功 taskBatchId:[545] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313521413, '', '2025-03-07 10:12:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (257, 'dev', 'ruoyi_group', 2, 546, 236, '[{\"time_stamp\":\"1741313531415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[546] 任务调度成功. \"},{\"time_stamp\":\"1741313531433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-546-1\",\"message\":\"任务执行成功 taskBatchId:[546] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313531415, '', '2025-03-07 10:12:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (258, 'dev', 'ruoyi_group', 2, 547, 237, '[{\"time_stamp\":\"1741313541417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[547] 任务调度成功. \"},{\"time_stamp\":\"1741313541431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-547-1\",\"message\":\"任务执行成功 taskBatchId:[547] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313541417, '', '2025-03-07 10:12:33'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (259, 'dev', 'ruoyi_group', 2, 548, 238, '[{\"time_stamp\":\"1741313551418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[548] 任务调度成功. \"},{\"time_stamp\":\"1741313551432\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-548-1\",\"message\":\"任务执行成功 taskBatchId:[548] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313551418, '', '2025-03-07 10:12:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (260, 'dev', 'ruoyi_group', 2, 549, 239, '[{\"time_stamp\":\"1741313561418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[549] 任务调度成功. \"},{\"time_stamp\":\"1741313561432\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-549-1\",\"message\":\"任务执行成功 taskBatchId:[549] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313561418, '', '2025-03-07 10:12:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (261, 'dev', 'ruoyi_group', 2, 550, 240, '[{\"time_stamp\":\"1741313571411\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[550] 任务调度成功. \"},{\"time_stamp\":\"1741313571471\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-550-1\",\"message\":\"任务执行成功 taskBatchId:[550] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313571411, '', '2025-03-07 10:13:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (262, 'dev', 'ruoyi_group', 2, 551, 241, '[{\"time_stamp\":\"1741313581412\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[551] 任务调度成功. \"},{\"time_stamp\":\"1741313581430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-551-1\",\"message\":\"任务执行成功 taskBatchId:[551] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313581412, '', '2025-03-07 10:13:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (263, 'dev', 'ruoyi_group', 2, 552, 242, '[{\"time_stamp\":\"1741313591416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[552] 任务调度成功. \"},{\"time_stamp\":\"1741313591430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-552-1\",\"message\":\"任务执行成功 taskBatchId:[552] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313591416, '', '2025-03-07 10:13:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (264, 'dev', 'ruoyi_group', 2, 553, 243, '[{\"time_stamp\":\"1741313601456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[553] 任务调度成功. \"},{\"time_stamp\":\"1741313601470\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-553-1\",\"message\":\"任务执行成功 taskBatchId:[553] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313601456, '', '2025-03-07 10:13:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (265, 'dev', 'ruoyi_group', 2, 554, 244, '[{\"time_stamp\":\"1741313611405\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[554] 任务调度成功. \"},{\"time_stamp\":\"1741313611419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-554-1\",\"message\":\"任务执行成功 taskBatchId:[554] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313611405, '', '2025-03-07 10:13:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (266, 'dev', 'ruoyi_group', 2, 555, 245, '[{\"time_stamp\":\"1741313621426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[555] 任务调度成功. \"},{\"time_stamp\":\"1741313621446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-555-1\",\"message\":\"任务执行成功 taskBatchId:[555] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313621426, '', '2025-03-07 10:13:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (267, 'dev', 'ruoyi_group', 2, 556, 246, '[{\"time_stamp\":\"1741313631408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[556] 任务调度成功. \"},{\"time_stamp\":\"1741313631428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-556-1\",\"message\":\"任务执行成功 taskBatchId:[556] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313631408, '', '2025-03-07 10:14:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (268, 'dev', 'ruoyi_group', 2, 557, 247, '[{\"time_stamp\":\"1741313641414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[557] 任务调度成功. \"},{\"time_stamp\":\"1741313641428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-557-1\",\"message\":\"任务执行成功 taskBatchId:[557] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313641414, '', '2025-03-07 10:14:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (269, 'dev', 'ruoyi_group', 2, 558, 248, '[{\"time_stamp\":\"1741313651406\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[558] 任务调度成功. \"},{\"time_stamp\":\"1741313651420\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-558-1\",\"message\":\"任务执行成功 taskBatchId:[558] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313651406, '', '2025-03-07 10:14:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (270, 'dev', 'ruoyi_group', 2, 559, 249, '[{\"time_stamp\":\"1741313661411\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[559] 任务调度成功. \"},{\"time_stamp\":\"1741313661433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-559-1\",\"message\":\"任务执行成功 taskBatchId:[559] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313661411, '', '2025-03-07 10:14:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (271, 'dev', 'ruoyi_group', 2, 560, 250, '[{\"time_stamp\":\"1741313671407\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[560] 任务调度成功. \"},{\"time_stamp\":\"1741313671421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-560-1\",\"message\":\"任务执行成功 taskBatchId:[560] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313671407, '', '2025-03-07 10:14:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (272, 'dev', 'ruoyi_group', 2, 561, 251, '[{\"time_stamp\":\"1741313681417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[561] 任务调度成功. \"},{\"time_stamp\":\"1741313681439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-561-1\",\"message\":\"任务执行成功 taskBatchId:[561] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313681417, '', '2025-03-07 10:14:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (273, 'dev', 'ruoyi_group', 2, 562, 252, '[{\"time_stamp\":\"1741313691414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[562] 任务调度成功. \"},{\"time_stamp\":\"1741313691426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-562-1\",\"message\":\"任务执行成功 taskBatchId:[562] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313691414, '', '2025-03-07 10:15:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (274, 'dev', 'ruoyi_group', 2, 563, 253, '[{\"time_stamp\":\"1741313701419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[563] 任务调度成功. \"},{\"time_stamp\":\"1741313701433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-563-1\",\"message\":\"任务执行成功 taskBatchId:[563] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313701419, '', '2025-03-07 10:15:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (275, 'dev', 'ruoyi_group', 2, 564, 254, '[{\"time_stamp\":\"1741313711416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[564] 任务调度成功. \"},{\"time_stamp\":\"1741313711435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-564-1\",\"message\":\"任务执行成功 taskBatchId:[564] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313711416, '', '2025-03-07 10:15:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (276, 'dev', 'ruoyi_group', 2, 565, 255, '[{\"time_stamp\":\"1741313721417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[565] 任务调度成功. \"},{\"time_stamp\":\"1741313721430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-565-1\",\"message\":\"任务执行成功 taskBatchId:[565] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313721417, '', '2025-03-07 10:15:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (277, 'dev', 'ruoyi_group', 2, 566, 256, '[{\"time_stamp\":\"1741313731408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[566] 任务调度成功. \"},{\"time_stamp\":\"1741313731422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-566-1\",\"message\":\"任务执行成功 taskBatchId:[566] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313731408, '', '2025-03-07 10:15:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (278, 'dev', 'ruoyi_group', 2, 567, 257, '[{\"time_stamp\":\"1741313741409\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[567] 任务调度成功. \"},{\"time_stamp\":\"1741313741439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-567-1\",\"message\":\"任务执行成功 taskBatchId:[567] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313741409, '', '2025-03-07 10:15:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (279, 'dev', 'ruoyi_group', 2, 568, 258, '[{\"time_stamp\":\"1741313751403\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[568] 任务调度成功. \"},{\"time_stamp\":\"1741313751420\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-568-1\",\"message\":\"任务执行成功 taskBatchId:[568] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313751403, '', '2025-03-07 10:16:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (280, 'dev', 'ruoyi_group', 2, 569, 259, '[{\"time_stamp\":\"1741313761421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[569] 任务调度成功. \"},{\"time_stamp\":\"1741313761446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-569-1\",\"message\":\"任务执行成功 taskBatchId:[569] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313761421, '', '2025-03-07 10:16:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (281, 'dev', 'ruoyi_group', 2, 570, 260, '[{\"time_stamp\":\"1741313771415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[570] 任务调度成功. \"},{\"time_stamp\":\"1741313771429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-570-1\",\"message\":\"任务执行成功 taskBatchId:[570] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313771415, '', '2025-03-07 10:16:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (282, 'dev', 'ruoyi_group', 2, 571, 261, '[{\"time_stamp\":\"1741313781416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[571] 任务调度成功. \"},{\"time_stamp\":\"1741313781428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-571-1\",\"message\":\"任务执行成功 taskBatchId:[571] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313781416, '', '2025-03-07 10:16:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (283, 'dev', 'ruoyi_group', 2, 572, 262, '[{\"time_stamp\":\"1741313791413\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[572] 任务调度成功. \"},{\"time_stamp\":\"1741313791426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-572-1\",\"message\":\"任务执行成功 taskBatchId:[572] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313791413, '', '2025-03-07 10:16:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (284, 'dev', 'ruoyi_group', 2, 573, 263, '[{\"time_stamp\":\"1741313801409\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[573] 任务调度成功. \"},{\"time_stamp\":\"1741313801426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-573-1\",\"message\":\"任务执行成功 taskBatchId:[573] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313801409, '', '2025-03-07 10:16:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (285, 'dev', 'ruoyi_group', 2, 574, 264, '[{\"time_stamp\":\"1741313811594\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[574] 任务调度成功. \"},{\"time_stamp\":\"1741313811632\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-574-1\",\"message\":\"任务执行成功 taskBatchId:[574] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313811594, '', '2025-03-07 10:17:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (286, 'dev', 'ruoyi_group', 2, 575, 265, '[{\"time_stamp\":\"1741313821407\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[575] 任务调度成功. \"},{\"time_stamp\":\"1741313821420\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-575-1\",\"message\":\"任务执行成功 taskBatchId:[575] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313821407, '', '2025-03-07 10:17:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (287, 'dev', 'ruoyi_group', 2, 576, 266, '[{\"time_stamp\":\"1741313831411\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[576] 任务调度成功. \"},{\"time_stamp\":\"1741313831429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-576-1\",\"message\":\"任务执行成功 taskBatchId:[576] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313831411, '', '2025-03-07 10:17:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (288, 'dev', 'ruoyi_group', 2, 577, 267, '[{\"time_stamp\":\"1741313841406\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[577] 任务调度成功. \"},{\"time_stamp\":\"1741313841419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-577-1\",\"message\":\"任务执行成功 taskBatchId:[577] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313841406, '', '2025-03-07 10:17:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (289, 'dev', 'ruoyi_group', 2, 578, 268, '[{\"time_stamp\":\"1741313851402\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[578] 任务调度成功. \"},{\"time_stamp\":\"1741313851415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-578-1\",\"message\":\"任务执行成功 taskBatchId:[578] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313851402, '', '2025-03-07 10:17:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (290, 'dev', 'ruoyi_group', 2, 579, 269, '[{\"time_stamp\":\"1741313861419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[579] 任务调度成功. \"},{\"time_stamp\":\"1741313861437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-579-1\",\"message\":\"任务执行成功 taskBatchId:[579] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313861419, '', '2025-03-07 10:17:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (291, 'dev', 'ruoyi_group', 2, 580, 270, '[{\"time_stamp\":\"1741313871411\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[580] 任务调度成功. \"},{\"time_stamp\":\"1741313871426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-580-1\",\"message\":\"任务执行成功 taskBatchId:[580] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313871411, '', '2025-03-07 10:18:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (292, 'dev', 'ruoyi_group', 2, 581, 271, '[{\"time_stamp\":\"1741313881474\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[581] 任务调度成功. \"},{\"time_stamp\":\"1741313881491\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-581-1\",\"message\":\"任务执行成功 taskBatchId:[581] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313881474, '', '2025-03-07 10:18:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (293, 'dev', 'ruoyi_group', 2, 582, 272, '[{\"time_stamp\":\"1741313891402\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[582] 任务调度成功. \"},{\"time_stamp\":\"1741313891422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-582-1\",\"message\":\"任务执行成功 taskBatchId:[582] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313891402, '', '2025-03-07 10:18:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (294, 'dev', 'ruoyi_group', 2, 583, 273, '[{\"time_stamp\":\"1741313901410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[583] 任务调度成功. \"},{\"time_stamp\":\"1741313901426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-583-1\",\"message\":\"任务执行成功 taskBatchId:[583] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313901410, '', '2025-03-07 10:18:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (295, 'dev', 'ruoyi_group', 2, 584, 274, '[{\"time_stamp\":\"1741313911398\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[584] 任务调度成功. \"},{\"time_stamp\":\"1741313911414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-584-1\",\"message\":\"任务执行成功 taskBatchId:[584] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313911398, '', '2025-03-07 10:18:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (296, 'dev', 'ruoyi_group', 2, 585, 275, '[{\"time_stamp\":\"1741313921414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[585] 任务调度成功. \"},{\"time_stamp\":\"1741313921433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-585-1\",\"message\":\"任务执行成功 taskBatchId:[585] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313921414, '', '2025-03-07 10:18:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (297, 'dev', 'ruoyi_group', 2, 586, 276, '[{\"time_stamp\":\"1741313931447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[586] 任务调度成功. \"},{\"time_stamp\":\"1741313931460\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-586-1\",\"message\":\"任务执行成功 taskBatchId:[586] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313931447, '', '2025-03-07 10:19:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (298, 'dev', 'ruoyi_group', 2, 587, 277, '[{\"time_stamp\":\"1741313941405\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[587] 任务调度成功. \"},{\"time_stamp\":\"1741313941419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-587-1\",\"message\":\"任务执行成功 taskBatchId:[587] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313941405, '', '2025-03-07 10:19:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (299, 'dev', 'ruoyi_group', 2, 588, 278, '[{\"time_stamp\":\"1741313951396\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[588] 任务调度成功. \"},{\"time_stamp\":\"1741313951410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-588-1\",\"message\":\"任务执行成功 taskBatchId:[588] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313951396, '', '2025-03-07 10:19:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (300, 'dev', 'ruoyi_group', 2, 589, 279, '[{\"time_stamp\":\"1741313961407\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[589] 任务调度成功. \"},{\"time_stamp\":\"1741313961421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-589-1\",\"message\":\"任务执行成功 taskBatchId:[589] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313961407, '', '2025-03-07 10:19:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (301, 'dev', 'ruoyi_group', 2, 590, 280, '[{\"time_stamp\":\"1741313971396\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[590] 任务调度成功. \"},{\"time_stamp\":\"1741313971409\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-590-1\",\"message\":\"任务执行成功 taskBatchId:[590] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313971396, '', '2025-03-07 10:19:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (302, 'dev', 'ruoyi_group', 2, 591, 281, '[{\"time_stamp\":\"1741313981405\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[591] 任务调度成功. \"},{\"time_stamp\":\"1741313981433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-591-1\",\"message\":\"任务执行成功 taskBatchId:[591] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313981405, '', '2025-03-07 10:19:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (303, 'dev', 'ruoyi_group', 2, 592, 282, '[{\"time_stamp\":\"1741313991410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[592] 任务调度成功. \"},{\"time_stamp\":\"1741313991428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-592-1\",\"message\":\"任务执行成功 taskBatchId:[592] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741313991410, '', '2025-03-07 10:20:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (304, 'dev', 'ruoyi_group', 2, 593, 283, '[{\"time_stamp\":\"1741314001402\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[593] 任务调度成功. \"},{\"time_stamp\":\"1741314001418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-593-1\",\"message\":\"任务执行成功 taskBatchId:[593] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314001402, '', '2025-03-07 10:20:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (305, 'dev', 'ruoyi_group', 2, 594, 284, '[{\"time_stamp\":\"1741314011399\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[594] 任务调度成功. \"},{\"time_stamp\":\"1741314011414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-594-1\",\"message\":\"任务执行成功 taskBatchId:[594] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314011399, '', '2025-03-07 10:20:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (306, 'dev', 'ruoyi_group', 2, 595, 285, '[{\"time_stamp\":\"1741314021393\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[595] 任务调度成功. \"},{\"time_stamp\":\"1741314021407\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-595-1\",\"message\":\"任务执行成功 taskBatchId:[595] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314021393, '', '2025-03-07 10:20:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (307, 'dev', 'ruoyi_group', 2, 596, 286, '[{\"time_stamp\":\"1741314031391\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[596] 任务调度成功. \"},{\"time_stamp\":\"1741314031405\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-596-1\",\"message\":\"任务执行成功 taskBatchId:[596] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314031391, '', '2025-03-07 10:20:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (308, 'dev', 'ruoyi_group', 2, 597, 287, '[{\"time_stamp\":\"1741314041443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[597] 任务调度成功. \"},{\"time_stamp\":\"1741314041457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-597-1\",\"message\":\"任务执行成功 taskBatchId:[597] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314041443, '', '2025-03-07 10:20:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (309, 'dev', 'ruoyi_group', 2, 598, 288, '[{\"time_stamp\":\"1741314051442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[598] 任务调度成功. \"},{\"time_stamp\":\"1741314051457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-598-1\",\"message\":\"任务执行成功 taskBatchId:[598] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314051442, '', '2025-03-07 10:21:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (310, 'dev', 'ruoyi_group', 2, 599, 289, '[{\"time_stamp\":\"1741314061436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[599] 任务调度成功. \"},{\"time_stamp\":\"1741314061450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-599-1\",\"message\":\"任务执行成功 taskBatchId:[599] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314061436, '', '2025-03-07 10:21:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (311, 'dev', 'ruoyi_group', 2, 600, 290, '[{\"time_stamp\":\"1741314071400\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[600] 任务调度成功. \"},{\"time_stamp\":\"1741314071414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-600-1\",\"message\":\"任务执行成功 taskBatchId:[600] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314071400, '', '2025-03-07 10:21:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (312, 'dev', 'ruoyi_group', 2, 601, 291, '[{\"time_stamp\":\"1741314081402\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[601] 任务调度成功. \"},{\"time_stamp\":\"1741314081418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-601-1\",\"message\":\"任务执行成功 taskBatchId:[601] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314081402, '', '2025-03-07 10:21:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (313, 'dev', 'ruoyi_group', 2, 602, 292, '[{\"time_stamp\":\"1741314091434\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[602] 任务调度成功. \"},{\"time_stamp\":\"1741314091450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-602-1\",\"message\":\"任务执行成功 taskBatchId:[602] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314091434, '', '2025-03-07 10:21:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (314, 'dev', 'ruoyi_group', 2, 603, 293, '[{\"time_stamp\":\"1741314101431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[603] 任务调度成功. \"},{\"time_stamp\":\"1741314101450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-603-1\",\"message\":\"任务执行成功 taskBatchId:[603] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314101431, '', '2025-03-07 10:21:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (315, 'dev', 'ruoyi_group', 2, 604, 294, '[{\"time_stamp\":\"1741314111410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[604] 任务调度成功. \"},{\"time_stamp\":\"1741314111453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-604-1\",\"message\":\"任务执行成功 taskBatchId:[604] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314111410, '', '2025-03-07 10:22:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (316, 'dev', 'ruoyi_group', 2, 605, 295, '[{\"time_stamp\":\"1741314121609\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[605] 任务调度成功. \"},{\"time_stamp\":\"1741314121626\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-605-1\",\"message\":\"任务执行成功 taskBatchId:[605] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314121609, '', '2025-03-07 10:22:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (317, 'dev', 'ruoyi_group', 2, 606, 296, '[{\"time_stamp\":\"1741314131450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[606] 任务调度成功. \"},{\"time_stamp\":\"1741314131514\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-606-1\",\"message\":\"任务执行成功 taskBatchId:[606] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314131450, '', '2025-03-07 10:22:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (318, 'dev', 'ruoyi_group', 2, 607, 297, '[{\"time_stamp\":\"1741314141601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[607] 任务调度成功. \"},{\"time_stamp\":\"1741314141624\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-607-1\",\"message\":\"任务执行成功 taskBatchId:[607] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314141601, '', '2025-03-07 10:22:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (319, 'dev', 'ruoyi_group', 2, 608, 298, '[{\"time_stamp\":\"1741314151546\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[608] 任务调度成功. \"},{\"time_stamp\":\"1741314151575\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-608-1\",\"message\":\"任务执行成功 taskBatchId:[608] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314151546, '', '2025-03-07 10:22:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (320, 'dev', 'ruoyi_group', 2, 609, 299, '[{\"time_stamp\":\"1741314161701\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[609] 任务调度成功. \"},{\"time_stamp\":\"1741314161726\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-609-1\",\"message\":\"任务执行成功 taskBatchId:[609] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314161701, '', '2025-03-07 10:22:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (321, 'dev', 'ruoyi_group', 2, 610, 300, '[{\"time_stamp\":\"1741314171458\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[610] 任务调度成功. \"},{\"time_stamp\":\"1741314171476\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-610-1\",\"message\":\"任务执行成功 taskBatchId:[610] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314171458, '', '2025-03-07 10:23:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (322, 'dev', 'ruoyi_group', 2, 611, 301, '[{\"time_stamp\":\"1741314181392\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[611] 任务调度成功. \"},{\"time_stamp\":\"1741314181408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-611-1\",\"message\":\"任务执行成功 taskBatchId:[611] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314181392, '', '2025-03-07 10:23:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (323, 'dev', 'ruoyi_group', 2, 612, 302, '[{\"time_stamp\":\"1741314191387\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[612] 任务调度成功. \"},{\"time_stamp\":\"1741314191404\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-612-1\",\"message\":\"任务执行成功 taskBatchId:[612] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314191387, '', '2025-03-07 10:23:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (324, 'dev', 'ruoyi_group', 2, 613, 303, '[{\"time_stamp\":\"1741314201392\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[613] 任务调度成功. \"},{\"time_stamp\":\"1741314201408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-613-1\",\"message\":\"任务执行成功 taskBatchId:[613] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314201392, '', '2025-03-07 10:23:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (325, 'dev', 'ruoyi_group', 2, 614, 304, '[{\"time_stamp\":\"1741314211382\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[614] 任务调度成功. \"},{\"time_stamp\":\"1741314211397\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-614-1\",\"message\":\"任务执行成功 taskBatchId:[614] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314211382, '', '2025-03-07 10:23:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (326, 'dev', 'ruoyi_group', 2, 615, 305, '[{\"time_stamp\":\"1741314221432\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[615] 任务调度成功. \"},{\"time_stamp\":\"1741314221454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-615-1\",\"message\":\"任务执行成功 taskBatchId:[615] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314221432, '', '2025-03-07 10:23:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (327, 'dev', 'ruoyi_group', 2, 616, 306, '[{\"time_stamp\":\"1741314231426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[616] 任务调度成功. \"},{\"time_stamp\":\"1741314231468\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-616-1\",\"message\":\"任务执行成功 taskBatchId:[616] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314231426, '', '2025-03-07 10:24:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (328, 'dev', 'ruoyi_group', 2, 617, 307, '[{\"time_stamp\":\"1741314241427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[617] 任务调度成功. \"},{\"time_stamp\":\"1741314241453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-617-1\",\"message\":\"任务执行成功 taskBatchId:[617] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314241427, '', '2025-03-07 10:24:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (329, 'dev', 'ruoyi_group', 2, 618, 308, '[{\"time_stamp\":\"1741314251436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[618] 任务调度成功. \"},{\"time_stamp\":\"1741314251456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-618-1\",\"message\":\"任务执行成功 taskBatchId:[618] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314251436, '', '2025-03-07 10:24:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (330, 'dev', 'ruoyi_group', 2, 619, 309, '[{\"time_stamp\":\"1741314261442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[619] 任务调度成功. \"},{\"time_stamp\":\"1741314261468\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-619-1\",\"message\":\"任务执行成功 taskBatchId:[619] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314261442, '', '2025-03-07 10:24:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (331, 'dev', 'ruoyi_group', 2, 620, 310, '[{\"time_stamp\":\"1741314271690\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[620] 任务调度成功. \"},{\"time_stamp\":\"1741314271715\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-620-1\",\"message\":\"任务执行成功 taskBatchId:[620] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314271690, '', '2025-03-07 10:24:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (332, 'dev', 'ruoyi_group', 2, 621, 311, '[{\"time_stamp\":\"1741314281578\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[621] 任务调度成功. \"},{\"time_stamp\":\"1741314281623\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-621-1\",\"message\":\"任务执行成功 taskBatchId:[621] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314281578, '', '2025-03-07 10:24:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (333, 'dev', 'ruoyi_group', 2, 622, 312, '[{\"time_stamp\":\"1741314291385\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[622] 任务调度成功. \"},{\"time_stamp\":\"1741314291408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-622-1\",\"message\":\"任务执行成功 taskBatchId:[622] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314291385, '', '2025-03-07 10:25:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (334, 'dev', 'ruoyi_group', 2, 623, 313, '[{\"time_stamp\":\"1741314301429\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[623] 任务调度成功. \"},{\"time_stamp\":\"1741314301450\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-623-1\",\"message\":\"任务执行成功 taskBatchId:[623] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314301429, '', '2025-03-07 10:25:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (335, 'dev', 'ruoyi_group', 2, 624, 314, '[{\"time_stamp\":\"1741314311794\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[624] 任务调度成功. \"},{\"time_stamp\":\"1741314311841\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-624-1\",\"message\":\"任务执行成功 taskBatchId:[624] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314311794, '', '2025-03-07 10:25:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (336, 'dev', 'ruoyi_group', 2, 625, 315, '[{\"time_stamp\":\"1741314321383\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[625] 任务调度成功. \"},{\"time_stamp\":\"1741314321400\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-625-1\",\"message\":\"任务执行成功 taskBatchId:[625] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314321383, '', '2025-03-07 10:25:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (337, 'dev', 'ruoyi_group', 2, 626, 316, '[{\"time_stamp\":\"1741314331385\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[626] 任务调度成功. \"},{\"time_stamp\":\"1741314331403\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-626-1\",\"message\":\"任务执行成功 taskBatchId:[626] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314331385, '', '2025-03-07 10:25:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (338, 'dev', 'ruoyi_group', 2, 627, 317, '[{\"time_stamp\":\"1741314341386\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[627] 任务调度成功. \"},{\"time_stamp\":\"1741314341399\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-627-1\",\"message\":\"任务执行成功 taskBatchId:[627] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314341386, '', '2025-03-07 10:25:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (339, 'dev', 'ruoyi_group', 2, 628, 318, '[{\"time_stamp\":\"1741314351386\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[628] 任务调度成功. \"},{\"time_stamp\":\"1741314351401\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-628-1\",\"message\":\"任务执行成功 taskBatchId:[628] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314351386, '', '2025-03-07 10:26:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (340, 'dev', 'ruoyi_group', 2, 629, 319, '[{\"time_stamp\":\"1741314361383\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[629] 任务调度成功. \"},{\"time_stamp\":\"1741314361396\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-629-1\",\"message\":\"任务执行成功 taskBatchId:[629] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314361383, '', '2025-03-07 10:26:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (341, 'dev', 'ruoyi_group', 2, 630, 320, '[{\"time_stamp\":\"1741314371387\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[630] 任务调度成功. \"},{\"time_stamp\":\"1741314371400\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-630-1\",\"message\":\"任务执行成功 taskBatchId:[630] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314371387, '', '2025-03-07 10:26:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (342, 'dev', 'ruoyi_group', 2, 631, 321, '[{\"time_stamp\":\"1741314381387\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[631] 任务调度成功. \"},{\"time_stamp\":\"1741314381402\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-631-1\",\"message\":\"任务执行成功 taskBatchId:[631] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314381387, '', '2025-03-07 10:26:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (343, 'dev', 'ruoyi_group', 2, 632, 322, '[{\"time_stamp\":\"1741314391389\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[632] 任务调度成功. \"},{\"time_stamp\":\"1741314391414\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-632-1\",\"message\":\"任务执行成功 taskBatchId:[632] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314391389, '', '2025-03-07 10:26:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (344, 'dev', 'ruoyi_group', 2, 633, 323, '[{\"time_stamp\":\"1741314401375\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[633] 任务调度成功. \"},{\"time_stamp\":\"1741314401390\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-633-1\",\"message\":\"任务执行成功 taskBatchId:[633] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314401375, '', '2025-03-07 10:26:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (345, 'dev', 'ruoyi_group', 2, 634, 324, '[{\"time_stamp\":\"1741314411492\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[634] 任务调度成功. \"},{\"time_stamp\":\"1741314411512\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-634-1\",\"message\":\"任务执行成功 taskBatchId:[634] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314411492, '', '2025-03-07 10:27:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (346, 'dev', 'ruoyi_group', 2, 635, 325, '[{\"time_stamp\":\"1741314421489\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[635] 任务调度成功. \"},{\"time_stamp\":\"1741314421518\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-635-1\",\"message\":\"任务执行成功 taskBatchId:[635] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314421489, '', '2025-03-07 10:27:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (347, 'dev', 'ruoyi_group', 2, 636, 326, '[{\"time_stamp\":\"1741314431465\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[636] 任务调度成功. \"},{\"time_stamp\":\"1741314431534\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_17695DF38FDE7441_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-636-1\",\"message\":\"任务执行失败 taskBatchId:[636]\"},{\"time_stamp\":\"1741314431724\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-13\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741314431733\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[636] 任务调度成功. \"},{\"time_stamp\":\"1741314431766\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_17695DF38FDE7441_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-636-1\",\"message\":\"任务执行失败 taskBatchId:[636]\"},{\"time_stamp\":\"1741314431827\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741314431844\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[636] 任务调度成功. \"},{\"time_stamp\":\"1741314431863\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_17695DF38FDE7441_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-636-1\",\"message\":\"任务执行失败 taskBatchId:[636]\"},{\"time_stamp\":\"1741314431908\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741314431922\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[636] 任务调度成功. \"},{\"time_stamp\":\"1741314431953\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_17695DF38FDE7441_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-636-1\",\"message\":\"任务执行失败 taskBatchId:[636]\"}]', 11, 1741314431465, '', '2025-03-07 10:27:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (354, 'dev', 'ruoyi_group', 2, 647, 330, '[{\"time_stamp\":\"1741314541834\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[647] 任务调度成功. \"},{\"time_stamp\":\"1741314541933\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-647-1\",\"message\":\"任务执行失败 taskBatchId:[647]\"},{\"time_stamp\":\"1741314542092\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741314542106\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[647] 任务调度成功. \"},{\"time_stamp\":\"1741314542124\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-647-1\",\"message\":\"任务执行失败 taskBatchId:[647]\"},{\"time_stamp\":\"1741314542189\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741314542190\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[647] 任务调度成功. \"},{\"time_stamp\":\"1741314542212\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-647-1\",\"message\":\"任务执行失败 taskBatchId:[647]\"},{\"time_stamp\":\"1741314542247\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741314542255\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[647] 任务调度成功. \"},{\"time_stamp\":\"1741314542268\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-647-1\",\"message\":\"任务执行失败 taskBatchId:[647]\"}]', 11, 1741314541834, '', '2025-03-07 10:29:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (355, 'dev', 'ruoyi_group', 2, 648, 331, '[{\"time_stamp\":\"1741314551389\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[648] 任务调度成功. \"},{\"time_stamp\":\"1741314551400\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-648-1\",\"message\":\"任务执行失败 taskBatchId:[648]\"},{\"time_stamp\":\"1741314551460\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741314551461\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[648] 任务调度成功. \"},{\"time_stamp\":\"1741314551471\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-648-1\",\"message\":\"任务执行失败 taskBatchId:[648]\"},{\"time_stamp\":\"1741314551500\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-9\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741314551502\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[648] 任务调度成功. \"},{\"time_stamp\":\"1741314551510\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-648-1\",\"message\":\"任务执行失败 taskBatchId:[648]\"},{\"time_stamp\":\"1741314551541\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741314551542\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[648] 任务调度成功. \"},{\"time_stamp\":\"1741314551552\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-648-1\",\"message\":\"任务执行失败 taskBatchId:[648]\"}]', 11, 1741314551389, '', '2025-03-07 10:29:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (356, 'dev', 'ruoyi_group', 2, 650, 333, '[{\"time_stamp\":\"1741314606612\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-650-1\",\"message\":\"任务执行失败 taskBatchId:[650]\"}]', 1, 1741314606612, '', '2025-03-07 10:30:17'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (357, 'dev', 'ruoyi_group', 2, 654, 334, '[{\"time_stamp\":\"1741314611394\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[654] 任务调度成功. \"},{\"time_stamp\":\"1741314611414\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-654-1\",\"message\":\"任务执行失败 taskBatchId:[654]\"},{\"time_stamp\":\"1741314611505\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741314611507\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[654] 任务调度成功. \"},{\"time_stamp\":\"1741314611523\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-654-1\",\"message\":\"任务执行失败 taskBatchId:[654]\"},{\"time_stamp\":\"1741314611606\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-5\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741314611608\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[654] 任务调度成功. \"}]', 7, 1741314611394, '', '2025-03-07 10:30:17'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (366, 'dev', 'ruoyi_group', 2, 667, 337, '[{\"time_stamp\":\"1741314741615\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[667] 任务调度成功. \"},{\"time_stamp\":\"1741314741738\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-667-1\",\"message\":\"任务执行成功 taskBatchId:[667] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314741615, '', '2025-03-07 10:32:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (367, 'dev', 'ruoyi_group', 2, 668, 338, '[{\"time_stamp\":\"1741314751378\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[668] 任务调度成功. \"},{\"time_stamp\":\"1741314751391\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-668-1\",\"message\":\"任务执行成功 taskBatchId:[668] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314751378, '', '2025-03-07 10:32:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (368, 'dev', 'ruoyi_group', 2, 669, 339, '[{\"time_stamp\":\"1741314761475\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[669] 任务调度成功. \"},{\"time_stamp\":\"1741314761490\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-669-1\",\"message\":\"任务执行成功 taskBatchId:[669] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314761475, '', '2025-03-07 10:32:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (369, 'dev', 'ruoyi_group', 2, 670, 340, '[{\"time_stamp\":\"1741314771380\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[670] 任务调度成功. \"},{\"time_stamp\":\"1741314771393\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-670-1\",\"message\":\"任务执行成功 taskBatchId:[670] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314771380, '', '2025-03-07 10:33:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (370, 'dev', 'ruoyi_group', 2, 671, 341, '[{\"time_stamp\":\"1741314781371\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[671] 任务调度成功. \"},{\"time_stamp\":\"1741314781384\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-671-1\",\"message\":\"任务执行成功 taskBatchId:[671] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314781371, '', '2025-03-07 10:33:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (371, 'dev', 'ruoyi_group', 2, 672, 342, '[{\"time_stamp\":\"1741314791375\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[672] 任务调度成功. \"},{\"time_stamp\":\"1741314791391\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-672-1\",\"message\":\"任务执行成功 taskBatchId:[672] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314791375, '', '2025-03-07 10:33:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (372, 'dev', 'ruoyi_group', 2, 673, 343, '[{\"time_stamp\":\"1741314801399\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[673] 任务调度成功. \"},{\"time_stamp\":\"1741314801416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-673-1\",\"message\":\"任务执行成功 taskBatchId:[673] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314801399, '', '2025-03-07 10:33:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (373, 'dev', 'ruoyi_group', 2, 674, 344, '[{\"time_stamp\":\"1741314811891\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[674] 任务调度成功. \"},{\"time_stamp\":\"1741314812101\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-674-1\",\"message\":\"任务执行成功 taskBatchId:[674] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314811891, '', '2025-03-07 10:33:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (374, 'dev', 'ruoyi_group', 2, 675, 345, '[{\"time_stamp\":\"1741314821461\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[675] 任务调度成功. \"},{\"time_stamp\":\"1741314821492\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-675-1\",\"message\":\"任务执行成功 taskBatchId:[675] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314821461, '', '2025-03-07 10:33:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (375, 'dev', 'ruoyi_group', 2, 676, 346, '[{\"time_stamp\":\"1741314831373\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[676] 任务调度成功. \"},{\"time_stamp\":\"1741314831385\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-676-1\",\"message\":\"任务执行成功 taskBatchId:[676] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314831373, '', '2025-03-07 10:34:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (376, 'dev', 'ruoyi_group', 2, 677, 347, '[{\"time_stamp\":\"1741314841392\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[677] 任务调度成功. \"},{\"time_stamp\":\"1741314841415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-677-1\",\"message\":\"任务执行成功 taskBatchId:[677] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314841392, '', '2025-03-07 10:34:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (377, 'dev', 'ruoyi_group', 2, 678, 348, '[{\"time_stamp\":\"1741314851378\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[678] 任务调度成功. \"},{\"time_stamp\":\"1741314851396\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-678-1\",\"message\":\"任务执行成功 taskBatchId:[678] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314851378, '', '2025-03-07 10:34:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (378, 'dev', 'ruoyi_group', 2, 679, 349, '[{\"time_stamp\":\"1741314861492\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[679] 任务调度成功. \"},{\"time_stamp\":\"1741314861529\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-679-1\",\"message\":\"任务执行成功 taskBatchId:[679] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314861492, '', '2025-03-07 10:34:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (379, 'dev', 'ruoyi_group', 2, 680, 350, '[{\"time_stamp\":\"1741314871480\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[680] 任务调度成功. \"},{\"time_stamp\":\"1741314871501\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-680-1\",\"message\":\"任务执行成功 taskBatchId:[680] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314871480, '', '2025-03-07 10:34:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (380, 'dev', 'ruoyi_group', 2, 681, 351, '[{\"time_stamp\":\"1741314881383\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[681] 任务调度成功. \"},{\"time_stamp\":\"1741314881401\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-681-1\",\"message\":\"任务执行成功 taskBatchId:[681] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314881383, '', '2025-03-07 10:34:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (381, 'dev', 'ruoyi_group', 2, 682, 352, '[{\"time_stamp\":\"1741314891411\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[682] 任务调度成功. \"},{\"time_stamp\":\"1741314891447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-682-1\",\"message\":\"任务执行成功 taskBatchId:[682] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314891411, '', '2025-03-07 10:35:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (382, 'dev', 'ruoyi_group', 2, 683, 353, '[{\"time_stamp\":\"1741314901374\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[683] 任务调度成功. \"},{\"time_stamp\":\"1741314901400\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-683-1\",\"message\":\"任务执行成功 taskBatchId:[683] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314901374, '', '2025-03-07 10:35:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (383, 'dev', 'ruoyi_group', 2, 684, 354, '[{\"time_stamp\":\"1741314911383\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[684] 任务调度成功. \"},{\"time_stamp\":\"1741314911426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-684-1\",\"message\":\"任务执行成功 taskBatchId:[684] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314911383, '', '2025-03-07 10:35:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (384, 'dev', 'ruoyi_group', 2, 685, 355, '[{\"time_stamp\":\"1741314921373\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[685] 任务调度成功. \"},{\"time_stamp\":\"1741314921421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-685-1\",\"message\":\"任务执行成功 taskBatchId:[685] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741314921373, '', '2025-03-07 10:35:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (389, 'dev', 'ruoyi_group', 2, 692, 358, '[{\"time_stamp\":\"1741315012594\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-1\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741315012602\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[692] 任务调度成功. \"},{\"time_stamp\":\"1741315012701\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-692-1\",\"message\":\"任务执行成功 taskBatchId:[692] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"},{\"time_stamp\":\"1741315013363\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[692] 任务调度成功. \"},{\"time_stamp\":\"1741315013381\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-692-1\",\"message\":\"任务执行成功 taskBatchId:[692] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 5, 1741315012594, '', '2025-03-07 10:37:03'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (390, 'dev', 'ruoyi_group', 2, 695, 359, '[{\"time_stamp\":\"1741315021401\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[695] 任务调度成功. \"},{\"time_stamp\":\"1741315021417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-695-1\",\"message\":\"任务执行成功 taskBatchId:[695] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315021401, '', '2025-03-07 10:37:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (391, 'dev', 'ruoyi_group', 2, 696, 360, '[{\"time_stamp\":\"1741315031369\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[696] 任务调度成功. \"},{\"time_stamp\":\"1741315031384\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-696-1\",\"message\":\"任务执行成功 taskBatchId:[696] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315031369, '', '2025-03-07 10:37:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (392, 'dev', 'ruoyi_group', 2, 697, 361, '[{\"time_stamp\":\"1741315041362\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[697] 任务调度成功. \"},{\"time_stamp\":\"1741315041376\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-697-1\",\"message\":\"任务执行成功 taskBatchId:[697] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315041362, '', '2025-03-07 10:37:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (393, 'dev', 'ruoyi_group', 2, 698, 362, '[{\"time_stamp\":\"1741315051367\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[698] 任务调度成功. \"},{\"time_stamp\":\"1741315051381\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-698-1\",\"message\":\"任务执行成功 taskBatchId:[698] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315051367, '', '2025-03-07 10:37:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (394, 'dev', 'ruoyi_group', 2, 699, 363, '[{\"time_stamp\":\"1741315061355\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[699] 任务调度成功. \"},{\"time_stamp\":\"1741315061369\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-699-1\",\"message\":\"任务执行成功 taskBatchId:[699] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315061355, '', '2025-03-07 10:37:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (395, 'dev', 'ruoyi_group', 2, 700, 364, '[{\"time_stamp\":\"1741315071369\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[700] 任务调度成功. \"},{\"time_stamp\":\"1741315071381\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-700-1\",\"message\":\"任务执行成功 taskBatchId:[700] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315071369, '', '2025-03-07 10:38:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (396, 'dev', 'ruoyi_group', 2, 701, 365, '[{\"time_stamp\":\"1741315081372\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[701] 任务调度成功. \"},{\"time_stamp\":\"1741315081386\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-701-1\",\"message\":\"任务执行成功 taskBatchId:[701] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315081372, '', '2025-03-07 10:38:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (397, 'dev', 'ruoyi_group', 2, 702, 366, '[{\"time_stamp\":\"1741315091655\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[702] 任务调度成功. \"},{\"time_stamp\":\"1741315091722\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-702-1\",\"message\":\"任务执行成功 taskBatchId:[702] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315091655, '', '2025-03-07 10:38:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (398, 'dev', 'ruoyi_group', 2, 703, 367, '[{\"time_stamp\":\"1741315102272\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[703] 任务调度成功. \"},{\"time_stamp\":\"1741315102291\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-703-1\",\"message\":\"任务执行成功 taskBatchId:[703] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315102272, '', '2025-03-07 10:38:33'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (399, 'dev', 'ruoyi_group', 2, 704, 368, '[{\"time_stamp\":\"1741315111398\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[704] 任务调度成功. \"},{\"time_stamp\":\"1741315111418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-704-1\",\"message\":\"任务执行成功 taskBatchId:[704] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315111398, '', '2025-03-07 10:38:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (400, 'dev', 'ruoyi_group', 2, 705, 369, '[{\"time_stamp\":\"1741315121486\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[705] 任务调度成功. \"},{\"time_stamp\":\"1741315121513\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-705-1\",\"message\":\"任务执行成功 taskBatchId:[705] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315121486, '', '2025-03-07 10:38:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (401, 'dev', 'ruoyi_group', 2, 706, 370, '[{\"time_stamp\":\"1741315131367\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[706] 任务调度成功. \"},{\"time_stamp\":\"1741315131415\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-706-1\",\"message\":\"任务执行成功 taskBatchId:[706] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315131367, '', '2025-03-07 10:39:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (402, 'dev', 'ruoyi_group', 2, 707, 371, '[{\"time_stamp\":\"1741315141385\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[707] 任务调度成功. \"},{\"time_stamp\":\"1741315141401\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-707-1\",\"message\":\"任务执行成功 taskBatchId:[707] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315141385, '', '2025-03-07 10:39:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (403, 'dev', 'ruoyi_group', 2, 708, 372, '[{\"time_stamp\":\"1741315151362\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[708] 任务调度成功. \"},{\"time_stamp\":\"1741315151374\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-708-1\",\"message\":\"任务执行成功 taskBatchId:[708] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315151362, '', '2025-03-07 10:39:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (404, 'dev', 'ruoyi_group', 2, 709, 373, '[{\"time_stamp\":\"1741315161357\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[709] 任务调度成功. \"},{\"time_stamp\":\"1741315161379\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-709-1\",\"message\":\"任务执行成功 taskBatchId:[709] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315161357, '', '2025-03-07 10:39:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (405, 'dev', 'ruoyi_group', 2, 710, 374, '[{\"time_stamp\":\"1741315171352\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[710] 任务调度成功. \"},{\"time_stamp\":\"1741315171384\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-710-1\",\"message\":\"任务执行成功 taskBatchId:[710] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315171352, '', '2025-03-07 10:39:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (406, 'dev', 'ruoyi_group', 2, 711, 375, '[{\"time_stamp\":\"1741315181355\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[711] 任务调度成功. \"},{\"time_stamp\":\"1741315181373\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-711-1\",\"message\":\"任务执行成功 taskBatchId:[711] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315181355, '', '2025-03-07 10:39:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (407, 'dev', 'ruoyi_group', 2, 712, 376, '[{\"time_stamp\":\"1741315191359\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[712] 任务调度成功. \"},{\"time_stamp\":\"1741315191376\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-712-1\",\"message\":\"任务执行成功 taskBatchId:[712] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315191359, '', '2025-03-07 10:40:01'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (408, 'dev', 'ruoyi_group', 2, 713, 377, '[{\"time_stamp\":\"1741315201351\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[713] 任务调度成功. \"},{\"time_stamp\":\"1741315201371\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-713-1\",\"message\":\"任务执行成功 taskBatchId:[713] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315201351, '', '2025-03-07 10:40:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (409, 'dev', 'ruoyi_group', 2, 714, 378, '[{\"time_stamp\":\"1741315211390\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[714] 任务调度成功. \"},{\"time_stamp\":\"1741315211408\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-714-1\",\"message\":\"任务执行成功 taskBatchId:[714] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315211390, '', '2025-03-07 10:40:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (410, 'dev', 'ruoyi_group', 2, 715, 379, '[{\"time_stamp\":\"1741315221351\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[715] 任务调度成功. \"},{\"time_stamp\":\"1741315221369\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-715-1\",\"message\":\"任务执行成功 taskBatchId:[715] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315221351, '', '2025-03-07 10:40:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (411, 'dev', 'ruoyi_group', 2, 716, 380, '[{\"time_stamp\":\"1741315231437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[716] 任务调度成功. \"},{\"time_stamp\":\"1741315231516\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-716-1\",\"message\":\"任务执行成功 taskBatchId:[716] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315231437, '', '2025-03-07 10:40:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (412, 'dev', 'ruoyi_group', 2, 717, 381, '[{\"time_stamp\":\"1741315241353\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[717] 任务调度成功. \"},{\"time_stamp\":\"1741315241371\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-717-1\",\"message\":\"任务执行成功 taskBatchId:[717] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315241353, '', '2025-03-07 10:40:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (413, 'dev', 'ruoyi_group', 2, 718, 382, '[{\"time_stamp\":\"1741315251471\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[718] 任务调度成功. \"},{\"time_stamp\":\"1741315251490\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-718-1\",\"message\":\"任务执行成功 taskBatchId:[718] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315251471, '', '2025-03-07 10:41:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (414, 'dev', 'ruoyi_group', 2, 719, 383, '[{\"time_stamp\":\"1741315261353\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[719] 任务调度成功. \"},{\"time_stamp\":\"1741315261381\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-719-1\",\"message\":\"任务执行成功 taskBatchId:[719] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315261353, '', '2025-03-07 10:41:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (415, 'dev', 'ruoyi_group', 2, 720, 384, '[{\"time_stamp\":\"1741315271455\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[720] 任务调度成功. \"},{\"time_stamp\":\"1741315271474\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-720-1\",\"message\":\"任务执行成功 taskBatchId:[720] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315271455, '', '2025-03-07 10:41:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (416, 'dev', 'ruoyi_group', 2, 721, 385, '[{\"time_stamp\":\"1741315281448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[721] 任务调度成功. \"},{\"time_stamp\":\"1741315281469\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-721-1\",\"message\":\"任务执行成功 taskBatchId:[721] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315281448, '', '2025-03-07 10:41:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (417, 'dev', 'ruoyi_group', 2, 722, 386, '[{\"time_stamp\":\"1741315291453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[722] 任务调度成功. \"},{\"time_stamp\":\"1741315291470\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-722-1\",\"message\":\"任务执行成功 taskBatchId:[722] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315291453, '', '2025-03-07 10:41:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (418, 'dev', 'ruoyi_group', 2, 723, 387, '[{\"time_stamp\":\"1741315301449\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[723] 任务调度成功. \"},{\"time_stamp\":\"1741315301469\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-723-1\",\"message\":\"任务执行成功 taskBatchId:[723] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315301449, '', '2025-03-07 10:41:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (419, 'dev', 'ruoyi_group', 2, 724, 388, '[{\"time_stamp\":\"1741315311514\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[724] 任务调度成功. \"},{\"time_stamp\":\"1741315311547\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-724-1\",\"message\":\"任务执行成功 taskBatchId:[724] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315311514, '', '2025-03-07 10:42:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (420, 'dev', 'ruoyi_group', 2, 725, 389, '[{\"time_stamp\":\"1741315321483\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[725] 任务调度成功. \"},{\"time_stamp\":\"1741315321502\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-725-1\",\"message\":\"任务执行成功 taskBatchId:[725] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315321483, '', '2025-03-07 10:42:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (421, 'dev', 'ruoyi_group', 2, 726, 390, '[{\"time_stamp\":\"1741315331465\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[726] 任务调度成功. \"},{\"time_stamp\":\"1741315331502\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-726-1\",\"message\":\"任务执行成功 taskBatchId:[726] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315331465, '', '2025-03-07 10:42:23'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (422, 'dev', 'ruoyi_group', 2, 727, 391, '[{\"time_stamp\":\"1741315341554\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[727] 任务调度成功. \"},{\"time_stamp\":\"1741315341575\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-727-1\",\"message\":\"任务执行成功 taskBatchId:[727] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315341554, '', '2025-03-07 10:42:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (423, 'dev', 'ruoyi_group', 2, 728, 392, '[{\"time_stamp\":\"1741315351460\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[728] 任务调度成功. \"},{\"time_stamp\":\"1741315351490\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-728-1\",\"message\":\"任务执行成功 taskBatchId:[728] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315351460, '', '2025-03-07 10:42:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (424, 'dev', 'ruoyi_group', 2, 729, 393, '[{\"time_stamp\":\"1741315361447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[729] 任务调度成功. \"},{\"time_stamp\":\"1741315361466\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-729-1\",\"message\":\"任务执行成功 taskBatchId:[729] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315361447, '', '2025-03-07 10:42:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (425, 'dev', 'ruoyi_group', 2, 730, 394, '[{\"time_stamp\":\"1741315371442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[730] 任务调度成功. \"},{\"time_stamp\":\"1741315371462\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-730-1\",\"message\":\"任务执行成功 taskBatchId:[730] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315371442, '', '2025-03-07 10:43:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (426, 'dev', 'ruoyi_group', 2, 731, 395, '[{\"time_stamp\":\"1741315381448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[731] 任务调度成功. \"},{\"time_stamp\":\"1741315381465\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-731-1\",\"message\":\"任务执行成功 taskBatchId:[731] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315381448, '', '2025-03-07 10:43:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (427, 'dev', 'ruoyi_group', 2, 732, 396, '[{\"time_stamp\":\"1741315391444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[732] 任务调度成功. \"},{\"time_stamp\":\"1741315391461\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-732-1\",\"message\":\"任务执行成功 taskBatchId:[732] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315391444, '', '2025-03-07 10:43:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (428, 'dev', 'ruoyi_group', 2, 733, 397, '[{\"time_stamp\":\"1741315401444\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[733] 任务调度成功. \"},{\"time_stamp\":\"1741315401463\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-733-1\",\"message\":\"任务执行成功 taskBatchId:[733] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315401444, '', '2025-03-07 10:43:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (429, 'dev', 'ruoyi_group', 2, 734, 398, '[{\"time_stamp\":\"1741315411442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[734] 任务调度成功. \"},{\"time_stamp\":\"1741315411464\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-734-1\",\"message\":\"任务执行成功 taskBatchId:[734] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315411442, '', '2025-03-07 10:43:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (430, 'dev', 'ruoyi_group', 2, 735, 399, '[{\"time_stamp\":\"1741315421442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[735] 任务调度成功. \"},{\"time_stamp\":\"1741315421462\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-735-1\",\"message\":\"任务执行成功 taskBatchId:[735] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315421442, '', '2025-03-07 10:43:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (431, 'dev', 'ruoyi_group', 2, 736, 400, '[{\"time_stamp\":\"1741315431437\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[736] 任务调度成功. \"},{\"time_stamp\":\"1741315431457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-736-1\",\"message\":\"任务执行成功 taskBatchId:[736] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315431437, '', '2025-03-07 10:44:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (432, 'dev', 'ruoyi_group', 2, 737, 401, '[{\"time_stamp\":\"1741315441440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[737] 任务调度成功. \"},{\"time_stamp\":\"1741315441462\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-737-1\",\"message\":\"任务执行成功 taskBatchId:[737] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315441440, '', '2025-03-07 10:44:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (433, 'dev', 'ruoyi_group', 2, 738, 402, '[{\"time_stamp\":\"1741315451440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[738] 任务调度成功. \"},{\"time_stamp\":\"1741315451459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-738-1\",\"message\":\"任务执行成功 taskBatchId:[738] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315451440, '', '2025-03-07 10:44:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (434, 'dev', 'ruoyi_group', 2, 739, 403, '[{\"time_stamp\":\"1741315461438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[739] 任务调度成功. \"},{\"time_stamp\":\"1741315461458\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-739-1\",\"message\":\"任务执行成功 taskBatchId:[739] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315461438, '', '2025-03-07 10:44:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (435, 'dev', 'ruoyi_group', 2, 740, 404, '[{\"time_stamp\":\"1741315471442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[740] 任务调度成功. \"},{\"time_stamp\":\"1741315471459\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-740-1\",\"message\":\"任务执行成功 taskBatchId:[740] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315471442, '', '2025-03-07 10:44:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (436, 'dev', 'ruoyi_group', 2, 741, 405, '[{\"time_stamp\":\"1741315481438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[741] 任务调度成功. \"},{\"time_stamp\":\"1741315481454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-741-1\",\"message\":\"任务执行成功 taskBatchId:[741] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315481438, '', '2025-03-07 10:44:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (437, 'dev', 'ruoyi_group', 2, 742, 406, '[{\"time_stamp\":\"1741315491428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[742] 任务调度成功. \"},{\"time_stamp\":\"1741315491452\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-742-1\",\"message\":\"任务执行成功 taskBatchId:[742] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315491428, '', '2025-03-07 10:45:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (438, 'dev', 'ruoyi_group', 2, 743, 407, '[{\"time_stamp\":\"1741315501430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[743] 任务调度成功. \"},{\"time_stamp\":\"1741315501447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-743-1\",\"message\":\"任务执行成功 taskBatchId:[743] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315501430, '', '2025-03-07 10:45:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (439, 'dev', 'ruoyi_group', 2, 744, 408, '[{\"time_stamp\":\"1741315511428\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[744] 任务调度成功. \"},{\"time_stamp\":\"1741315511445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-744-1\",\"message\":\"任务执行成功 taskBatchId:[744] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315511428, '', '2025-03-07 10:45:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (440, 'dev', 'ruoyi_group', 2, 745, 409, '[{\"time_stamp\":\"1741315521424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[745] 任务调度成功. \"},{\"time_stamp\":\"1741315521442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-745-1\",\"message\":\"任务执行成功 taskBatchId:[745] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315521424, '', '2025-03-07 10:45:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (441, 'dev', 'ruoyi_group', 2, 746, 410, '[{\"time_stamp\":\"1741315531423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[746] 任务调度成功. \"},{\"time_stamp\":\"1741315531441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-746-1\",\"message\":\"任务执行成功 taskBatchId:[746] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315531423, '', '2025-03-07 10:45:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (442, 'dev', 'ruoyi_group', 2, 747, 411, '[{\"time_stamp\":\"1741315541422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[747] 任务调度成功. \"},{\"time_stamp\":\"1741315541441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-747-1\",\"message\":\"任务执行成功 taskBatchId:[747] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315541422, '', '2025-03-07 10:45:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (443, 'dev', 'ruoyi_group', 2, 748, 412, '[{\"time_stamp\":\"1741315551421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[748] 任务调度成功. \"},{\"time_stamp\":\"1741315551441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-748-1\",\"message\":\"任务执行成功 taskBatchId:[748] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315551421, '', '2025-03-07 10:46:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (444, 'dev', 'ruoyi_group', 2, 749, 413, '[{\"time_stamp\":\"1741315561424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[749] 任务调度成功. \"},{\"time_stamp\":\"1741315561441\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-749-1\",\"message\":\"任务执行成功 taskBatchId:[749] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315561424, '', '2025-03-07 10:46:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (445, 'dev', 'ruoyi_group', 2, 750, 414, '[{\"time_stamp\":\"1741315571424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[750] 任务调度成功. \"},{\"time_stamp\":\"1741315571443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-750-1\",\"message\":\"任务执行成功 taskBatchId:[750] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315571424, '', '2025-03-07 10:46:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (446, 'dev', 'ruoyi_group', 2, 751, 415, '[{\"time_stamp\":\"1741315581419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[751] 任务调度成功. \"},{\"time_stamp\":\"1741315581435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-751-1\",\"message\":\"任务执行成功 taskBatchId:[751] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315581419, '', '2025-03-07 10:46:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (447, 'dev', 'ruoyi_group', 2, 752, 416, '[{\"time_stamp\":\"1741315591419\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[752] 任务调度成功. \"},{\"time_stamp\":\"1741315591440\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-752-1\",\"message\":\"任务执行成功 taskBatchId:[752] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315591419, '', '2025-03-07 10:46:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (448, 'dev', 'ruoyi_group', 2, 753, 417, '[{\"time_stamp\":\"1741315601425\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[753] 任务调度成功. \"},{\"time_stamp\":\"1741315601447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-753-1\",\"message\":\"任务执行成功 taskBatchId:[753] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315601425, '', '2025-03-07 10:46:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (449, 'dev', 'ruoyi_group', 2, 754, 418, '[{\"time_stamp\":\"1741315611422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[754] 任务调度成功. \"},{\"time_stamp\":\"1741315611438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-754-1\",\"message\":\"任务执行成功 taskBatchId:[754] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315611422, '', '2025-03-07 10:47:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (450, 'dev', 'ruoyi_group', 2, 755, 419, '[{\"time_stamp\":\"1741315621435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[755] 任务调度成功. \"},{\"time_stamp\":\"1741315621457\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-755-1\",\"message\":\"任务执行成功 taskBatchId:[755] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315621435, '', '2025-03-07 10:47:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (451, 'dev', 'ruoyi_group', 2, 756, 420, '[{\"time_stamp\":\"1741315631418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[756] 任务调度成功. \"},{\"time_stamp\":\"1741315631436\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-756-1\",\"message\":\"任务执行成功 taskBatchId:[756] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315631418, '', '2025-03-07 10:47:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (452, 'dev', 'ruoyi_group', 2, 757, 421, '[{\"time_stamp\":\"1741315641431\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[757] 任务调度成功. \"},{\"time_stamp\":\"1741315641455\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-757-1\",\"message\":\"任务执行成功 taskBatchId:[757] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315641431, '', '2025-03-07 10:47:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (453, 'dev', 'ruoyi_group', 2, 758, 422, '[{\"time_stamp\":\"1741315651413\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[758] 任务调度成功. \"},{\"time_stamp\":\"1741315651445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-758-1\",\"message\":\"任务执行成功 taskBatchId:[758] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315651413, '', '2025-03-07 10:47:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (454, 'dev', 'ruoyi_group', 2, 759, 423, '[{\"time_stamp\":\"1741315661422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[759] 任务调度成功. \"},{\"time_stamp\":\"1741315661491\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-759-1\",\"message\":\"任务执行成功 taskBatchId:[759] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315661422, '', '2025-03-07 10:47:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (455, 'dev', 'ruoyi_group', 2, 760, 424, '[{\"time_stamp\":\"1741315671435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[760] 任务调度成功. \"},{\"time_stamp\":\"1741315671495\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-760-1\",\"message\":\"任务执行成功 taskBatchId:[760] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315671435, '', '2025-03-07 10:48:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (456, 'dev', 'ruoyi_group', 2, 761, 425, '[{\"time_stamp\":\"1741315681447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[761] 任务调度成功. \"},{\"time_stamp\":\"1741315681470\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-761-1\",\"message\":\"任务执行成功 taskBatchId:[761] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315681447, '', '2025-03-07 10:48:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (457, 'dev', 'ruoyi_group', 2, 762, 426, '[{\"time_stamp\":\"1741315691417\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[762] 任务调度成功. \"},{\"time_stamp\":\"1741315691433\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-762-1\",\"message\":\"任务执行成功 taskBatchId:[762] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315691417, '', '2025-03-07 10:48:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (458, 'dev', 'ruoyi_group', 2, 763, 427, '[{\"time_stamp\":\"1741315701416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[763] 任务调度成功. \"},{\"time_stamp\":\"1741315701435\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-763-1\",\"message\":\"任务执行成功 taskBatchId:[763] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315701416, '', '2025-03-07 10:48:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (459, 'dev', 'ruoyi_group', 2, 764, 428, '[{\"time_stamp\":\"1741315711514\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[764] 任务调度成功. \"},{\"time_stamp\":\"1741315711602\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-764-1\",\"message\":\"任务执行成功 taskBatchId:[764] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315711514, '', '2025-03-07 10:48:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (460, 'dev', 'ruoyi_group', 2, 765, 429, '[{\"time_stamp\":\"1741315721418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[765] 任务调度成功. \"},{\"time_stamp\":\"1741315721449\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-765-1\",\"message\":\"任务执行成功 taskBatchId:[765] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315721418, '', '2025-03-07 10:48:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (461, 'dev', 'ruoyi_group', 2, 766, 430, '[{\"time_stamp\":\"1741315731426\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[766] 任务调度成功. \"},{\"time_stamp\":\"1741315731453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-766-1\",\"message\":\"任务执行成功 taskBatchId:[766] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315731426, '', '2025-03-07 10:49:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (462, 'dev', 'ruoyi_group', 2, 767, 431, '[{\"time_stamp\":\"1741315741427\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[767] 任务调度成功. \"},{\"time_stamp\":\"1741315741456\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-767-1\",\"message\":\"任务执行成功 taskBatchId:[767] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315741427, '', '2025-03-07 10:49:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (463, 'dev', 'ruoyi_group', 2, 768, 432, '[{\"time_stamp\":\"1741315751875\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[768] 任务调度成功. \"},{\"time_stamp\":\"1741315751977\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-768-1\",\"message\":\"任务执行成功 taskBatchId:[768] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315751875, '', '2025-03-07 10:49:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (464, 'dev', 'ruoyi_group', 2, 769, 433, '[{\"time_stamp\":\"1741315761422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[769] 任务调度成功. \"},{\"time_stamp\":\"1741315761445\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-769-1\",\"message\":\"任务执行成功 taskBatchId:[769] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315761422, '', '2025-03-07 10:49:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (465, 'dev', 'ruoyi_group', 2, 770, 434, '[{\"time_stamp\":\"1741315771452\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[770] 任务调度成功. \"},{\"time_stamp\":\"1741315771471\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-770-1\",\"message\":\"任务执行成功 taskBatchId:[770] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315771452, '', '2025-03-07 10:49:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (466, 'dev', 'ruoyi_group', 2, 771, 435, '[{\"time_stamp\":\"1741315781423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[771] 任务调度成功. \"},{\"time_stamp\":\"1741315781447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-771-1\",\"message\":\"任务执行成功 taskBatchId:[771] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315781423, '', '2025-03-07 10:49:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (467, 'dev', 'ruoyi_group', 2, 772, 436, '[{\"time_stamp\":\"1741315791423\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[772] 任务调度成功. \"},{\"time_stamp\":\"1741315791447\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-772-1\",\"message\":\"任务执行成功 taskBatchId:[772] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315791423, '', '2025-03-07 10:50:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (468, 'dev', 'ruoyi_group', 2, 773, 437, '[{\"time_stamp\":\"1741315801418\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[773] 任务调度成功. \"},{\"time_stamp\":\"1741315801446\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-773-1\",\"message\":\"任务执行成功 taskBatchId:[773] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315801418, '', '2025-03-07 10:50:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (469, 'dev', 'ruoyi_group', 2, 774, 438, '[{\"time_stamp\":\"1741315811416\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[774] 任务调度成功. \"},{\"time_stamp\":\"1741315811443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-774-1\",\"message\":\"任务执行成功 taskBatchId:[774] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315811416, '', '2025-03-07 10:50:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (470, 'dev', 'ruoyi_group', 2, 775, 439, '[{\"time_stamp\":\"1741315821421\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[775] 任务调度成功. \"},{\"time_stamp\":\"1741315821453\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-775-1\",\"message\":\"任务执行成功 taskBatchId:[775] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315821421, '', '2025-03-07 10:50:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (471, 'dev', 'ruoyi_group', 2, 776, 440, '[{\"time_stamp\":\"1741315831412\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[776] 任务调度成功. \"},{\"time_stamp\":\"1741315831442\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-776-1\",\"message\":\"任务执行成功 taskBatchId:[776] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315831412, '', '2025-03-07 10:50:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (472, 'dev', 'ruoyi_group', 2, 777, 441, '[{\"time_stamp\":\"1741315841454\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[777] 任务调度成功. \"},{\"time_stamp\":\"1741315841527\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-777-1\",\"message\":\"任务执行成功 taskBatchId:[777] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315841454, '', '2025-03-07 10:50:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (473, 'dev', 'ruoyi_group', 2, 778, 442, '[{\"time_stamp\":\"1741315851484\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[778] 任务调度成功. \"},{\"time_stamp\":\"1741315851521\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-778-1\",\"message\":\"任务执行成功 taskBatchId:[778] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315851484, '', '2025-03-07 10:51:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (474, 'dev', 'ruoyi_group', 2, 779, 443, '[{\"time_stamp\":\"1741315861742\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[779] 任务调度成功. \"},{\"time_stamp\":\"1741315861977\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-779-1\",\"message\":\"任务执行成功 taskBatchId:[779] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315861742, '', '2025-03-07 10:51:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (475, 'dev', 'ruoyi_group', 2, 780, 444, '[{\"time_stamp\":\"1741315871532\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[780] 任务调度成功. \"},{\"time_stamp\":\"1741315871568\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-780-1\",\"message\":\"任务执行成功 taskBatchId:[780] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315871532, '', '2025-03-07 10:51:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (476, 'dev', 'ruoyi_group', 2, 781, 445, '[{\"time_stamp\":\"1741315881517\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[781] 任务调度成功. \"},{\"time_stamp\":\"1741315881610\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-781-1\",\"message\":\"任务执行成功 taskBatchId:[781] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741315881517, '', '2025-03-07 10:51:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (481, 'dev', 'ruoyi_group', 2, 785, 448, '[{\"time_stamp\":\"1741328941895\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[785] 任务调度成功. \"}]', 1, 1741328941895, '', '2025-03-07 14:29:14'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (482, 'dev', 'ruoyi_group', 2, 792, 449, '[{\"time_stamp\":\"1741329013612\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[792] 任务调度成功. \"},{\"time_stamp\":\"1741329013676\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-792-1\",\"message\":\"任务执行失败 taskBatchId:[792]\"},{\"time_stamp\":\"1741329013738\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741329013741\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[792] 任务调度成功. \"},{\"time_stamp\":\"1741329013773\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-792-1\",\"message\":\"任务执行失败 taskBatchId:[792]\"},{\"time_stamp\":\"1741329013851\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-5\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741329013866\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[792] 任务调度成功. \"},{\"time_stamp\":\"1741329013900\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-792-1\",\"message\":\"任务执行失败 taskBatchId:[792]\"},{\"time_stamp\":\"1741329013959\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741329013974\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[792] 任务调度成功. \"},{\"time_stamp\":\"1741329014001\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-792-1\",\"message\":\"任务执行失败 taskBatchId:[792]\"}]', 11, 1741329013612, '', '2025-03-07 14:30:25'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (485, 'dev', 'ruoyi_group', 2, 795, 451, '[{\"time_stamp\":\"1741329041358\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[795] 任务调度成功. \"},{\"time_stamp\":\"1741329041401\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-795-1\",\"message\":\"任务执行失败 taskBatchId:[795]\"},{\"time_stamp\":\"1741329041443\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741329041448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[795] 任务调度成功. \"},{\"time_stamp\":\"1741329041488\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-795-1\",\"message\":\"任务执行失败 taskBatchId:[795]\"},{\"time_stamp\":\"1741329041532\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-13\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741329041536\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[795] 任务调度成功. \"},{\"time_stamp\":\"1741329041561\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-795-1\",\"message\":\"任务执行失败 taskBatchId:[795]\"},{\"time_stamp\":\"1741329041622\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741329041628\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[795] 任务调度成功. \"},{\"time_stamp\":\"1741329041654\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-795-1\",\"message\":\"任务执行失败 taskBatchId:[795]\"}]', 11, 1741329041358, '', '2025-03-07 14:30:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (502, 'dev', 'ruoyi_group', 2, 852, 459, '[{\"time_stamp\":\"1741331761497\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[852] 任务调度成功. \"},{\"time_stamp\":\"1741331761725\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-852-1\",\"message\":\"任务执行成功 taskBatchId:[852] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741331761497, '', '2025-03-07 15:16:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (503, 'dev', 'ruoyi_group', 2, 853, 460, '[{\"time_stamp\":\"1741331771254\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[853] 任务调度成功. \"},{\"time_stamp\":\"1741331771283\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-853-1\",\"message\":\"任务执行成功 taskBatchId:[853] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741331771254, '', '2025-03-07 15:16:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (504, 'dev', 'ruoyi_group', 2, 854, 461, '[{\"time_stamp\":\"1741331781268\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[854] 任务调度成功. \"},{\"time_stamp\":\"1741331781341\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-854-1\",\"message\":\"任务执行成功 taskBatchId:[854] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741331781268, '', '2025-03-07 15:16:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (505, 'dev', 'ruoyi_group', 2, 855, 462, '[{\"time_stamp\":\"1741331791255\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[855] 任务调度成功. \"},{\"time_stamp\":\"1741331791367\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-855-1\",\"message\":\"任务执行成功 taskBatchId:[855] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741331791255, '', '2025-03-07 15:16:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (506, 'dev', 'ruoyi_group', 2, 856, 463, '[{\"time_stamp\":\"1741332951267\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[856] 任务调度成功. \"},{\"time_stamp\":\"1741332951319\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153551\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-856-1\",\"message\":\"任务执行失败 taskBatchId:[856]\"},{\"time_stamp\":\"1741332951404\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741332951410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[856] 任务调度成功. \"},{\"time_stamp\":\"1741332951434\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153551\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-856-1\",\"message\":\"任务执行失败 taskBatchId:[856]\"},{\"time_stamp\":\"1741332951476\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741332951482\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[856] 任务调度成功. \"},{\"time_stamp\":\"1741332951508\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153551\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-856-1\",\"message\":\"任务执行失败 taskBatchId:[856]\"},{\"time_stamp\":\"1741332951614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741332951619\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[856] 任务调度成功. \"},{\"time_stamp\":\"1741332951644\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153551\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-856-1\",\"message\":\"任务执行失败 taskBatchId:[856]\"}]', 11, 1741332951267, '', '2025-03-07 15:36:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (507, 'dev', 'ruoyi_group', 2, 857, 464, '[{\"time_stamp\":\"1741332961188\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[857] 任务调度成功. \"},{\"time_stamp\":\"1741332961212\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153601\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-857-1\",\"message\":\"任务执行失败 taskBatchId:[857]\"},{\"time_stamp\":\"1741332961295\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741332961309\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[857] 任务调度成功. \"},{\"time_stamp\":\"1741332961330\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153601\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-857-1\",\"message\":\"任务执行失败 taskBatchId:[857]\"},{\"time_stamp\":\"1741332961371\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741332961380\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[857] 任务调度成功. \"},{\"time_stamp\":\"1741332961407\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153601\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-857-1\",\"message\":\"任务执行失败 taskBatchId:[857]\"},{\"time_stamp\":\"1741332961467\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741332961478\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[857] 任务调度成功. \"},{\"time_stamp\":\"1741332961518\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153601\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-857-1\",\"message\":\"任务执行失败 taskBatchId:[857]\"}]', 11, 1741332961188, '', '2025-03-07 15:36:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (508, 'dev', 'ruoyi_group', 2, 858, 465, '[{\"time_stamp\":\"1741332971190\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[858] 任务调度成功. \"},{\"time_stamp\":\"1741332971220\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153611\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-858-1\",\"message\":\"任务执行失败 taskBatchId:[858]\"},{\"time_stamp\":\"1741332971263\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-14\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741332971277\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[858] 任务调度成功. \"},{\"time_stamp\":\"1741332971298\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153611\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-858-1\",\"message\":\"任务执行失败 taskBatchId:[858]\"},{\"time_stamp\":\"1741332971346\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-15\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741332971351\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[858] 任务调度成功. \"},{\"time_stamp\":\"1741332971373\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153611\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-858-1\",\"message\":\"任务执行失败 taskBatchId:[858]\"},{\"time_stamp\":\"1741332971422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-16\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741332971430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[858] 任务调度成功. \"},{\"time_stamp\":\"1741332971451\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153611\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-858-1\",\"message\":\"任务执行失败 taskBatchId:[858]\"}]', 11, 1741332971190, '', '2025-03-07 15:36:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (509, 'dev', 'ruoyi_group', 2, 859, 466, '[{\"time_stamp\":\"1741332981178\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[859] 任务调度成功. \"},{\"time_stamp\":\"1741332981204\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153621\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-859-1\",\"message\":\"任务执行失败 taskBatchId:[859]\"},{\"time_stamp\":\"1741332981264\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741332981281\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[859] 任务调度成功. \"},{\"time_stamp\":\"1741332981306\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153621\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-859-1\",\"message\":\"任务执行失败 taskBatchId:[859]\"},{\"time_stamp\":\"1741332981346\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-3\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741332981353\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[859] 任务调度成功. \"},{\"time_stamp\":\"1741332981374\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153621\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-859-1\",\"message\":\"任务执行失败 taskBatchId:[859]\"},{\"time_stamp\":\"1741332981412\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-4\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741332981420\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[859] 任务调度成功. \"},{\"time_stamp\":\"1741332981452\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153621\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-859-1\",\"message\":\"任务执行失败 taskBatchId:[859]\"}]', 11, 1741332981178, '', '2025-03-07 15:36:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (510, 'dev', 'ruoyi_group', 2, 860, 467, '[{\"time_stamp\":\"1741332991179\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[860] 任务调度成功. \"},{\"time_stamp\":\"1741332991199\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153631\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-860-1\",\"message\":\"任务执行失败 taskBatchId:[860]\"},{\"time_stamp\":\"1741332991232\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741332991238\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[860] 任务调度成功. \"},{\"time_stamp\":\"1741332991270\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153631\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-860-1\",\"message\":\"任务执行失败 taskBatchId:[860]\"},{\"time_stamp\":\"1741332991310\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-7\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741332991324\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[860] 任务调度成功. \"},{\"time_stamp\":\"1741332991343\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153631\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-860-1\",\"message\":\"任务执行失败 taskBatchId:[860]\"},{\"time_stamp\":\"1741332991374\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741332991380\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[860] 任务调度成功. \"},{\"time_stamp\":\"1741332991418\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153631\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-860-1\",\"message\":\"任务执行失败 taskBatchId:[860]\"}]', 11, 1741332991179, '', '2025-03-07 15:36:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (511, 'dev', 'ruoyi_group', 2, 861, 468, '[{\"time_stamp\":\"1741333001176\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[861] 任务调度成功. \"},{\"time_stamp\":\"1741333001204\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153641\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-861-1\",\"message\":\"任务执行失败 taskBatchId:[861]\"},{\"time_stamp\":\"1741333001261\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741333001277\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[861] 任务调度成功. \"},{\"time_stamp\":\"1741333001300\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153641\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-861-1\",\"message\":\"任务执行失败 taskBatchId:[861]\"},{\"time_stamp\":\"1741333001340\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-11\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741333001350\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[861] 任务调度成功. \"},{\"time_stamp\":\"1741333001398\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153641\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-861-1\",\"message\":\"任务执行失败 taskBatchId:[861]\"},{\"time_stamp\":\"1741333001589\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-12\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741333001601\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[861] 任务调度成功. \"},{\"time_stamp\":\"1741333001749\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.RuntimeException: java.text.ParseException: Unparseable date: \\\"20250307153641\\\"\\n\\tat org.dromara.common.core.utils.DateUtils.dateTime(DateUtils.java:82)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:48)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-861-1\",\"message\":\"任务执行失败 taskBatchId:[861]\"}]', 11, 1741333001176, '', '2025-03-07 15:36:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (512, 'dev', 'ruoyi_group', 2, 862, 469, '[{\"time_stamp\":\"1741333071227\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[862] 任务调度成功. \"},{\"time_stamp\":\"1741333071322\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-862-1\",\"message\":\"任务执行成功 taskBatchId:[862] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333071227, '', '2025-03-07 15:38:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (513, 'dev', 'ruoyi_group', 2, 863, 470, '[{\"time_stamp\":\"1741333091196\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[863] 任务调度成功. \"},{\"time_stamp\":\"1741333091243\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-863-1\",\"message\":\"任务执行成功 taskBatchId:[863] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333091196, '', '2025-03-07 15:38:21'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (514, 'dev', 'ruoyi_group', 2, 864, 471, '[{\"time_stamp\":\"1741333157276\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-864-1\",\"message\":\"任务执行成功 taskBatchId:[864] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 1, 1741333157276, '', '2025-03-07 15:39:28'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (519, 'dev', 'ruoyi_group', 2, 874, 474, '[{\"time_stamp\":\"1741333331282\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[874] 任务调度成功. \"},{\"time_stamp\":\"1741333331331\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-874-1\",\"message\":\"任务执行成功 taskBatchId:[874] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333331282, '', '2025-03-07 15:42:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (520, 'dev', 'ruoyi_group', 2, 875, 475, '[{\"time_stamp\":\"1741333341164\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[875] 任务调度成功. \"},{\"time_stamp\":\"1741333341202\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-875-1\",\"message\":\"任务执行成功 taskBatchId:[875] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333341164, '', '2025-03-07 15:42:31'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (521, 'dev', 'ruoyi_group', 2, 876, 476, '[{\"time_stamp\":\"1741333393323\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-876-1\",\"message\":\"任务执行成功 taskBatchId:[876] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 1, 1741333393323, '', '2025-03-07 15:43:24'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (530, 'dev', 'ruoyi_group', 2, 939, 480, '[{\"time_stamp\":\"1741334200476\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-939-1\",\"message\":\"任务执行成功 taskBatchId:[939] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 1, 1741334200476, '', '2025-03-07 15:56:51'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (533, 'dev', 'ruoyi_group', 2, 943, 482, '[{\"time_stamp\":\"1741334241252\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[943] 任务调度成功. \"},{\"time_stamp\":\"1741334241320\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-943-1\",\"message\":\"任务执行成功 taskBatchId:[943] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741334241252, '', '2025-03-07 15:57:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (534, 'dev', 'ruoyi_group', 2, 944, 483, '[{\"time_stamp\":\"1741335101191\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[944] 任务调度成功. \"},{\"time_stamp\":\"1741335101254\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-944-1\",\"message\":\"任务执行成功 taskBatchId:[944] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335101191, '', '2025-03-07 16:11:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (538, 'dev', 'ruoyi_group', 2, 950, 486, '[{\"time_stamp\":\"1741335411133\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-12\",\"message\":\"批次:[950] 任务调度成功. \"},{\"time_stamp\":\"1741335411167\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-950-1\",\"message\":\"任务执行成功 taskBatchId:[950] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335411133, '', '2025-03-07 16:16:59'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (539, 'dev', 'ruoyi_group', 2, 951, 487, '[{\"time_stamp\":\"1741335441207\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-13\",\"message\":\"批次:[951] 任务调度成功. \"},{\"time_stamp\":\"1741335441245\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-951-1\",\"message\":\"任务执行成功 taskBatchId:[951] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335441207, '', '2025-03-07 16:17:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (540, 'dev', 'ruoyi_group', 2, 952, 488, '[{\"time_stamp\":\"1741335471130\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-14\",\"message\":\"批次:[952] 任务调度成功. \"},{\"time_stamp\":\"1741335471155\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-952-1\",\"message\":\"任务执行成功 taskBatchId:[952] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335471130, '', '2025-03-07 16:18:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (541, 'dev', 'ruoyi_group', 2, 953, 489, '[{\"time_stamp\":\"1741335501242\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-15\",\"message\":\"批次:[953] 任务调度成功. \"},{\"time_stamp\":\"1741335501307\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-953-1\",\"message\":\"任务执行成功 taskBatchId:[953] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335501242, '', '2025-03-07 16:18:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (542, 'dev', 'ruoyi_group', 2, 954, 490, '[{\"time_stamp\":\"1741335531294\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[954] 任务调度成功. \"},{\"time_stamp\":\"1741335531360\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-954-1\",\"message\":\"任务执行成功 taskBatchId:[954] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335531294, '', '2025-03-07 16:19:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (543, 'dev', 'ruoyi_group', 2, 955, 491, '[{\"time_stamp\":\"1741335561391\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[955] 任务调度成功. \"},{\"time_stamp\":\"1741335561430\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-955-1\",\"message\":\"任务执行成功 taskBatchId:[955] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335561391, '', '2025-03-07 16:19:32'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (546, 'dev', 'ruoyi_group', 2, 957, 493, '[{\"time_stamp\":\"1741337022062\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[957] 任务调度成功. \"},{\"time_stamp\":\"1741337022148\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-957-1\",\"message\":\"任务执行成功 taskBatchId:[957] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741337022062, '', '2025-03-07 16:43:53'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (547, 'dev', 'ruoyi_group', 2, 958, 494, '[{\"time_stamp\":\"1741337141623\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[958] 任务调度成功. \"},{\"time_stamp\":\"1741337141712\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-958-1\",\"message\":\"任务执行成功 taskBatchId:[958] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741337141623, '', '2025-03-07 16:45:52'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (548, 'dev', 'ruoyi_group', 2, 959, 495, '[{\"time_stamp\":\"1741337221331\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[959] 任务调度成功. \"},{\"time_stamp\":\"1741337221410\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-959-1\",\"message\":\"任务执行成功 taskBatchId:[959] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741337221331, '', '2025-03-07 16:47:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (549, 'dev', 'ruoyi_group', 2, 423, 148, '[{\"time_stamp\":\"1741312278177\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-13\",\"message\":\"taskId:[148] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312299142\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-17\",\"message\":\"taskId:[148] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312300132\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-19\",\"message\":\"taskId:[148] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312257098\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-10\",\"message\":\"taskId:[148] 任务调度失败. \"}]', 4, 1741312278177, '', '2025-03-07 09:51:39'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (550, 'dev', 'ruoyi_group', 2, 428, 149, '[{\"time_stamp\":\"1741312327127\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-31\",\"message\":\"taskId:[149] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312348128\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-34\",\"message\":\"taskId:[149] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312349127\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-36\",\"message\":\"taskId:[149] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312306840\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"169.254.25.90\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-22\",\"message\":\"taskId:[149] 任务调度失败. \"}]', 4, 1741312327127, '', '2025-03-07 09:52:28'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (551, 'dev', 'ruoyi_group', 2, 436, 151, '[{\"time_stamp\":\"1741312452437\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-17\",\"message\":\"taskId:[151] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312473437\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-20\",\"message\":\"taskId:[151] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312474436\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-23\",\"message\":\"taskId:[151] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312431466\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-13\",\"message\":\"taskId:[151] 任务调度失败. \"}]', 4, 1741312452437, '', '2025-03-07 09:54:33'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (552, 'dev', 'ruoyi_group', 2, 441, 152, '[{\"time_stamp\":\"1741312501494\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-36\",\"message\":\"taskId:[152] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312522474\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-39\",\"message\":\"taskId:[152] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312523444\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-42\",\"message\":\"taskId:[152] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312481352\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-26\",\"message\":\"taskId:[152] 任务调度失败. \"}]', 4, 1741312501494, '', '2025-03-07 09:55:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (553, 'dev', 'ruoyi_group', 2, 446, 153, '[{\"time_stamp\":\"1741312552432\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-54\",\"message\":\"taskId:[153] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312573430\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-57\",\"message\":\"taskId:[153] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312574432\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-59\",\"message\":\"taskId:[153] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312531448\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-45\",\"message\":\"taskId:[153] 任务调度失败. \"},{\"time_stamp\":\"1741312630244\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-77\",\"message\":\"taskId:[153] 任务调度失败执行重试 重试次数:[4]. \"}]', 5, 1741312552432, '', '2025-03-07 09:56:13'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (554, 'dev', 'ruoyi_group', 2, 451, 154, '[{\"time_stamp\":\"1741312601513\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-71\",\"message\":\"taskId:[154] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312622446\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-74\",\"message\":\"taskId:[154] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312623428\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-76\",\"message\":\"taskId:[154] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312581343\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-62\",\"message\":\"taskId:[154] 任务调度失败. \"}]', 4, 1741312601513, '', '2025-03-07 09:57:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (555, 'dev', 'ruoyi_group', 2, 457, 155, '[{\"time_stamp\":\"1741312662611\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-97\",\"message\":\"taskId:[155] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312683431\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-101\",\"message\":\"taskId:[155] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741312684519\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-103\",\"message\":\"taskId:[155] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741312641440\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-85\",\"message\":\"taskId:[155] 任务调度失败. \"}]', 4, 1741312662611, '', '2025-03-07 09:58:03'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (556, 'dev', 'ruoyi_group', 2, 462, 156, '[{\"time_stamp\":\"1741312712508\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-116\",\"message\":\"taskId:[156] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741312733762\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-1\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741312733772\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[462] 任务调度成功. \"},{\"time_stamp\":\"1741312733851\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-462-1\",\"message\":\"任务执行成功 taskBatchId:[462] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"},{\"time_stamp\":\"1741312734438\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-2\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741312734439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[462] 任务调度成功. \"},{\"time_stamp\":\"1741312734448\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.8.47\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-462-1\",\"message\":\"任务执行成功 taskBatchId:[462] [{\\\"status\\\":1,\\\"result\\\":\\\"测试成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"},{\"time_stamp\":\"1741312691469\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-106\",\"message\":\"taskId:[156] 任务调度失败. \"}]', 8, 1741312712508, '', '2025-03-07 09:58:53'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (557, 'dev', 'ruoyi_group', 2, 638, 328, '[{\"time_stamp\":\"1741314472369\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-902\",\"message\":\"taskId:[328] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741314493361\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-905\",\"message\":\"taskId:[328] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741314494378\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-907\",\"message\":\"taskId:[328] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741314451370\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-899\",\"message\":\"taskId:[328] 任务调度失败. \"}]', 4, 1741314472369, '', '2025-03-07 10:28:13'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (558, 'dev', 'ruoyi_group', 2, 643, 329, '[{\"time_stamp\":\"1741314522366\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-921\",\"message\":\"taskId:[329] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[1]. \"},{\"time_stamp\":\"1741314544381\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-5\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741314544382\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[643] 任务调度成功. \"},{\"time_stamp\":\"1741314544392\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-643-1\",\"message\":\"任务执行失败 taskBatchId:[643]\"},{\"time_stamp\":\"1741314544422\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-6\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741314544424\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[643] 任务调度成功. \"},{\"time_stamp\":\"1741314544435\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-643-1\",\"message\":\"任务执行失败 taskBatchId:[643]\"},{\"time_stamp\":\"1741314545392\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[643] 任务调度成功. \"},{\"time_stamp\":\"1741314545403\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"java.lang.NullPointerException: Cannot invoke \\\"org.dromara.eims.service.IEimsMaintPlanService.queryList(org.dromara.eims.domain.bo.EimsMaintPlanBo)\\\" because the return value of \\\"org.dromara.eims.job.MaintPlanToOrderJob$$M$_jr_3E92EFC38586E066_1._jr$ig$maintPlanService(Object)\\\" is null\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:27)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-643-1\",\"message\":\"任务执行失败 taskBatchId:[643]\"}]', 9, 1741314522366, '', '2025-03-07 10:28:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (559, 'dev', 'ruoyi_group', 2, 655, 335, '[{\"time_stamp\":\"1741314642574\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-979\",\"message\":\"taskId:[335] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741314663499\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-982\",\"message\":\"taskId:[335] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741314664555\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-984\",\"message\":\"taskId:[335] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741314621462\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-976\",\"message\":\"taskId:[335] 任务调度失败. \"}]', 4, 1741314642574, '', '2025-03-07 10:31:04'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (560, 'dev', 'ruoyi_group', 2, 660, 336, '[{\"time_stamp\":\"1741314692431\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-998\",\"message\":\"taskId:[336] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741314713399\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1001\",\"message\":\"taskId:[336] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[2]. \"},{\"time_stamp\":\"1741314714377\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1004\",\"message\":\"taskId:[336] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[3]. \"},{\"time_stamp\":\"1741314672187\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-988\",\"message\":\"taskId:[336] 任务调度失败. \"}]', 4, 1741314692431, '', '2025-03-07 10:31:53'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (561, 'dev', 'ruoyi_group', 2, 687, 357, '[{\"time_stamp\":\"1741314962365\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1104\",\"message\":\"taskId:[357] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741314983341\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1107\",\"message\":\"taskId:[357] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741314984341\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1109\",\"message\":\"taskId:[357] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741314941622\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1101\",\"message\":\"taskId:[357] 任务调度失败. \"}]', 4, 1741314962365, '', '2025-03-07 10:36:23'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (562, 'dev', 'ruoyi_group', 2, 783, 447, '[{\"time_stamp\":\"1741315922368\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1516\",\"message\":\"taskId:[447] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741315943373\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1517\",\"message\":\"taskId:[447] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741315944283\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1519\",\"message\":\"taskId:[447] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741315902010\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1514\",\"message\":\"taskId:[447] 任务调度失败. \"}]', 4, 1741315922368, '', '2025-03-07 10:52:23'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (563, 'dev', 'ruoyi_group', 2, 793, 450, '[{\"time_stamp\":\"1741329021352\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[793] 任务调度成功. \"},{\"time_stamp\":\"1741329035430\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-793-1\",\"message\":\"任务执行失败 taskBatchId:[793]\"},{\"time_stamp\":\"1741329035532\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-8\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[1]\"},{\"time_stamp\":\"1741329035551\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[793] 任务调度成功. \"},{\"time_stamp\":\"1741329035585\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-793-1\",\"message\":\"任务执行失败 taskBatchId:[793]\"},{\"time_stamp\":\"1741329035637\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-9\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[2]\"},{\"time_stamp\":\"1741329035643\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-9\",\"message\":\"批次:[793] 任务调度成功. \"},{\"time_stamp\":\"1741329035668\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-793-1\",\"message\":\"任务执行失败 taskBatchId:[793]\"},{\"time_stamp\":\"1741329035704\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:53)\",\"thread\":\"snail-netty-server-10\",\"message\":\"任务执行/调度失败执行重试. 重试次数:[3]\"},{\"time_stamp\":\"1741329035709\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[793] 任务调度成功. \"},{\"time_stamp\":\"1741329035730\",\"level\":\"ERROR\",\"port\":\"28080\",\"throwable\":\"io.github.linpeilie.ConvertException: cannot find converter from EimsMaintPlanVo to EimsMaintOrder\\n\\tat io.github.linpeilie.Converter.convert(Converter.java:31)\\n\\tat org.dromara.common.core.utils.MapstructUtils.convert(MapstructUtils.java:39)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob.jobExecute(MaintPlanToOrderJob.java:89)\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)\\n\\tat org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)\\n\\tat org.dromara.eims.job.MaintPlanToOrderJob$$SpringCGLIB$$0.jobExecute()\\n\\tat java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)\\n\\tat java.base/java.lang.reflect.Method.invoke(Method.java:580)\\n\\tat org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AnnotationJobExecutor.doJobExecute(AnnotationJobExecutor.java:26)\\n\\tat com.aizuda.snailjob.client.job.core.executor.AbstractJobExecutor.lambda$jobExecute$0(AbstractJobExecutor.java:78)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)\\n\\tat com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:75)\\n\\tat com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onFailure(JobExecutorFutureCallback.java:113)\",\"thread\":\"snail-job-job-793-1\",\"message\":\"任务执行失败 taskBatchId:[793]\"}]', 11, 1741329021352, '', '2025-03-07 14:30:35'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (564, 'dev', 'ruoyi_group', 2, 797, 453, '[{\"time_stamp\":\"1741329081422\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1572\",\"message\":\"taskId:[453] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741329102478\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1575\",\"message\":\"taskId:[453] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741329103427\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1577\",\"message\":\"taskId:[453] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741329061341\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1569\",\"message\":\"taskId:[453] 任务调度失败. \"}]', 4, 1741329081422, '', '2025-03-07 14:31:42'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (565, 'dev', 'ruoyi_group', 2, 802, 454, '[{\"time_stamp\":\"1741329132423\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1589\",\"message\":\"taskId:[454] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[1]. \"},{\"time_stamp\":\"1741329154434\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1593\",\"message\":\"taskId:[454] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[2]. \"},{\"time_stamp\":\"1741329111437\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1580\",\"message\":\"taskId:[454] 任务调度失败. \"},{\"time_stamp\":\"1741329176556\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1597\",\"message\":\"taskId:[454] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[3]. \"}]', 4, 1741329132423, '', '2025-03-07 14:32:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (566, 'dev', 'ruoyi_group', 2, 825, 457, '[{\"time_stamp\":\"1741329362425\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1630\",\"message\":\"taskId:[457] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741329383430\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1633\",\"message\":\"taskId:[457] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741329384428\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1635\",\"message\":\"taskId:[457] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741329341705\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1627\",\"message\":\"taskId:[457] 任务调度失败. \"}]', 4, 1741329362425, '', '2025-03-07 14:36:23'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (567, 'dev', 'ruoyi_group', 2, 830, 458, '[{\"time_stamp\":\"1741329432430\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1651\",\"message\":\"taskId:[458] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[2]. \"},{\"time_stamp\":\"1741329411428\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1647\",\"message\":\"taskId:[458] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741329433427\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1654\",\"message\":\"taskId:[458] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[3]. \"},{\"time_stamp\":\"1741329391342\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1638\",\"message\":\"taskId:[458] 任务调度失败. \"}]', 4, 1741329432430, '', '2025-03-07 14:37:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (568, 'dev', 'ruoyi_group', 2, 870, 472, '[{\"time_stamp\":\"1741333271275\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-16\",\"message\":\"批次:[870] 任务调度成功. \"},{\"time_stamp\":\"1741333286329\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-870-1\",\"message\":\"任务执行成功 taskBatchId:[870] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333271275, '', '2025-03-07 15:41:26'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (569, 'dev', 'ruoyi_group', 2, 872, 473, '[{\"time_stamp\":\"1741333311751\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[872] 任务调度成功. \"},{\"time_stamp\":\"1741333321187\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-872-1\",\"message\":\"任务执行成功 taskBatchId:[872] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741333311751, '', '2025-03-07 15:42:02'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (570, 'dev', 'ruoyi_group', 2, 885, 478, '[{\"time_stamp\":\"1741333572320\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1800\",\"message\":\"taskId:[478] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741333593243\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1803\",\"message\":\"taskId:[478] 任务调度失败执行重试 重试次数:[2]. \"},{\"time_stamp\":\"1741333594245\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1805\",\"message\":\"taskId:[478] 任务调度失败执行重试 重试次数:[3]. \"},{\"time_stamp\":\"1741333551543\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1797\",\"message\":\"taskId:[478] 任务调度失败. \"}]', 4, 1741333572320, '', '2025-03-07 15:46:33'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (571, 'dev', 'ruoyi_group', 2, 890, 479, '[{\"time_stamp\":\"1741333642244\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1823\",\"message\":\"taskId:[479] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[2]. \"},{\"time_stamp\":\"1741333621241\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:111)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1819\",\"message\":\"taskId:[479] 任务调度失败执行重试 重试次数:[1]. \"},{\"time_stamp\":\"1741333643303\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1826\",\"message\":\"taskId:[479] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[3]. \"},{\"time_stamp\":\"1741333601153\",\"level\":\"ERROR\",\"port\":\"17888\",\"throwable\":\"java.util.concurrent.ExecutionException: com.aizuda.snailjob.common.core.exception.SnailJobRemotingTimeOutException: Request to remote interface timed out.\\n\\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)\\n\\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2096)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.lambda$requestRemote$3(RpcClientInvokeHandler.java:160)\\n\\tat com.github.rholder.retry.AttemptTimeLimiters$NoAttemptTimeLimit.call(AttemptTimeLimiters.java:78)\\n\\tat com.github.rholder.retry.Retryer.call(Retryer.java:160)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.requestRemote(RpcClientInvokeHandler.java:134)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:93)\\n\\tat com.aizuda.snailjob.server.common.rpc.client.RpcClientInvokeHandler.invoke(RpcClientInvokeHandler.java:46)\\n\\tat jdk.proxy2/jdk.proxy2.$Proxy160.dispatch(Unknown Source)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:84)\\n\\tat com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.lambda$createReceive$0(RequestClientActor.java:51)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)\\n\\tat akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)\\n\\tat scala.PartialFunction.applyOrElse(PartialFunction.scala:214)\\n\\tat scala.PartialFunction.applyOrElse$(PartialFunction.scala:213)\\n\\tat akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)\\n\\tat scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:269)\\n\\tat akka.actor.Actor.aroundReceive(Actor.scala:537)\\n\\tat akka.actor.Actor.aroundReceive$(Actor.scala:535)\\n\\tat akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)\\n\\tat akka.actor.ActorCell.receiveMessage(ActorCell.scala:579)\\n\\tat akka.actor.ActorCell.invoke(ActorCell.scala:547)\\n\\tat akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)\\n\\tat akka.dispatch.Mailbox.run(Mailbox.scala:231)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\\n\\tat java.base/java.lang.Thread.run(Thread.java:1583)\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:114)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1809\",\"message\":\"taskId:[479] 任务调度失败. \"}]', 4, 1741333642244, '', '2025-03-07 15:47:22'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (572, 'dev', 'ruoyi_group', 2, 941, 481, '[{\"time_stamp\":\"1741334221257\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[941] 任务调度成功. \"},{\"time_stamp\":\"1741334235959\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-941-1\",\"message\":\"任务执行成功 taskBatchId:[941] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741334221257, '', '2025-03-07 15:57:16'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (573, 'dev', 'ruoyi_group', 2, 948, 485, '[{\"time_stamp\":\"1741335371246\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1918\",\"message\":\"taskId:[485] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[1]. \"},{\"time_stamp\":\"1741335393204\",\"level\":\"ERROR\",\"port\":\"17888\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.server.job.task.support.executor.job.RequestClientActor.doExecute(RequestClientActor.java:70)\",\"thread\":\"JOB_ACTOR_SYSTEM-akka.actor.job-task-executor-call-client-dispatcher-1921\",\"message\":\"taskId:[485] 任务调度失败执行重试. 失败原因: 无可执行的客户端. 重试次数:[2]. \"},{\"time_stamp\":\"1741335408322\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-10\",\"message\":\"批次:[948] 任务调度成功. \"},{\"time_stamp\":\"1741335408439\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-8\",\"message\":\"批次:[948] 任务调度成功. \"},{\"time_stamp\":\"1741335408557\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-11\",\"message\":\"批次:[948] 任务调度成功. \"},{\"time_stamp\":\"1741335408821\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-948-1\",\"message\":\"任务执行成功 taskBatchId:[948] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 6, 1741335371246, '', '2025-03-07 16:16:11'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (574, 'dev', 'ruoyi_group', 2, 956, 492, '[{\"time_stamp\":\"1741335668976\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[956] 任务调度成功. \"},{\"time_stamp\":\"1741335703265\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-956-1\",\"message\":\"任务执行成功 taskBatchId:[956] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741335668976, '', '2025-03-07 16:21:23'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (575, 'dev', 'ruoyi_group', 2, 960, 496, '[{\"time_stamp\":\"1741578227838\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[960] 任务调度成功. \"},{\"time_stamp\":\"1741578228344\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-960-1\",\"message\":\"任务执行成功 taskBatchId:[960] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741578227838, '', '2025-03-10 11:43:59'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (576, 'dev', 'ruoyi_group', 2, 961, 497, '[{\"time_stamp\":\"1741594284889\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.12.19\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[961] 任务调度成功. \"},{\"time_stamp\":\"1741594285184\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.12.19\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-961-1\",\"message\":\"任务执行成功 taskBatchId:[961] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741594284889, '', '2025-03-10 16:11:35'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (577, 'dev', 'ruoyi_group', 2, 962, 498, '[{\"time_stamp\":\"1741654514888\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[962] 任务调度成功. \"},{\"time_stamp\":\"1741654514966\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-962-1\",\"message\":\"任务执行成功 taskBatchId:[962] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741654514888, '', '2025-03-11 08:55:25'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (578, 'dev', 'ruoyi_group', 2, 963, 499, '[{\"time_stamp\":\"1741654657184\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[963] 任务调度成功. \"},{\"time_stamp\":\"1741654657210\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-963-1\",\"message\":\"任务执行成功 taskBatchId:[963] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741654657184, '', '2025-03-11 08:57:48'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (579, 'dev', 'ruoyi_group', 2, 964, 500, '[{\"time_stamp\":\"1741657144264\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[964] 任务调度成功. \"},{\"time_stamp\":\"1741657144328\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-964-1\",\"message\":\"任务执行成功 taskBatchId:[964] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741657144264, '', '2025-03-11 09:39:15'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (580, 'dev', 'ruoyi_group', 2, 965, 501, '[{\"time_stamp\":\"1741657283695\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[965] 任务调度成功. \"},{\"time_stamp\":\"1741657283718\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-965-1\",\"message\":\"任务执行成功 taskBatchId:[965] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741657283695, '', '2025-03-11 09:41:34'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (581, 'dev', 'ruoyi_group', 2, 966, 502, '[{\"time_stamp\":\"1741657353591\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[966] 任务调度成功. \"}]', 1, 1741657353591, '', '2025-03-11 09:46:19'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (582, 'dev', 'ruoyi_group', 2, 967, 503, '[{\"time_stamp\":\"1741657747108\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[967] 任务调度成功. \"},{\"time_stamp\":\"1741657747136\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.65.31\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-967-1\",\"message\":\"任务执行成功 taskBatchId:[967] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741657747108, '', '2025-03-11 09:49:17'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (583, 'dev', 'ruoyi_group', 2, 968, 504, '[{\"time_stamp\":\"1741741615434\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[968] 任务调度成功. \"},{\"time_stamp\":\"1741741615483\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-968-1\",\"message\":\"任务执行成功 taskBatchId:[968] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741741615434, '', '2025-03-12 09:07:06'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (584, 'dev', 'ruoyi_group', 2, 969, 505, '[{\"time_stamp\":\"1741742394173\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[969] 任务调度成功. \"},{\"time_stamp\":\"1741742397351\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-969-1\",\"message\":\"任务执行成功 taskBatchId:[969] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741742394173, '', '2025-03-12 09:20:05'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (585, 'dev', 'ruoyi_group', 2, 970, 506, '[{\"time_stamp\":\"1741747531271\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[970] 任务调度成功. \"},{\"time_stamp\":\"1741747531351\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-970-1\",\"message\":\"任务执行成功 taskBatchId:[970] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741747531271, '', '2025-03-12 10:45:41'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (586, 'dev', 'ruoyi_group', 2, 971, 507, '[{\"time_stamp\":\"1741747566951\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[971] 任务调度成功. \"},{\"time_stamp\":\"1741747566979\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-971-1\",\"message\":\"任务执行成功 taskBatchId:[971] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741747566951, '', '2025-03-12 10:46:17'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (587, 'dev', 'ruoyi_group', 2, 972, 508, '[{\"time_stamp\":\"1741749735908\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[972] 任务调度成功. \"},{\"time_stamp\":\"1741749735927\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.3\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-972-1\",\"message\":\"任务执行成功 taskBatchId:[972] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741749735908, '', '2025-03-12 11:22:26'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (588, 'dev', 'ruoyi_group', 2, 973, 509, '[{\"time_stamp\":\"1741843200947\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[973] 任务调度成功. \"},{\"time_stamp\":\"1741843201684\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"192.168.2.1\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-973-1\",\"message\":\"任务执行成功 taskBatchId:[973] [{\\\"status\\\":1,\\\"result\\\":\\\"保养计划生成保养工单成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1741843200947, '', '2025-03-13 13:20:12'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (589, 'dev', 'ruoyi_group', 3, 974, 510, '[{\"time_stamp\":\"1742365514831\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-1\",\"message\":\"批次:[974] 任务调度成功. \"},{\"time_stamp\":\"1742365514954\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-974-1\",\"message\":\"任务执行成功 taskBatchId:[974] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365514831, '', '2025-03-19 14:25:26'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (590, 'dev', 'ruoyi_group', 3, 975, 511, '[{\"time_stamp\":\"1742365524614\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-2\",\"message\":\"批次:[975] 任务调度成功. \"},{\"time_stamp\":\"1742365524633\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-975-1\",\"message\":\"任务执行成功 taskBatchId:[975] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365524614, '', '2025-03-19 14:25:36'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (591, 'dev', 'ruoyi_group', 3, 976, 512, '[{\"time_stamp\":\"1742365534564\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-3\",\"message\":\"批次:[976] 任务调度成功. \"},{\"time_stamp\":\"1742365534610\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-976-1\",\"message\":\"任务执行成功 taskBatchId:[976] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365534564, '', '2025-03-19 14:25:46'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (592, 'dev', 'ruoyi_group', 3, 977, 513, '[{\"time_stamp\":\"1742365544523\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-4\",\"message\":\"批次:[977] 任务调度成功. \"},{\"time_stamp\":\"1742365544540\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-977-1\",\"message\":\"任务执行成功 taskBatchId:[977] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365544523, '', '2025-03-19 14:25:56'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (593, 'dev', 'ruoyi_group', 3, 978, 514, '[{\"time_stamp\":\"1742365554522\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-5\",\"message\":\"批次:[978] 任务调度成功. \"},{\"time_stamp\":\"1742365554541\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-978-1\",\"message\":\"任务执行成功 taskBatchId:[978] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365554522, '', '2025-03-19 14:26:05'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (594, 'dev', 'ruoyi_group', 3, 979, 515, '[{\"time_stamp\":\"1742365564702\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-6\",\"message\":\"批次:[979] 任务调度成功. \"},{\"time_stamp\":\"1742365564729\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-979-1\",\"message\":\"任务执行成功 taskBatchId:[979] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365564702, '', '2025-03-19 14:26:16'); INSERT INTO `sj_job_log_message` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `task_id`, `message`, `log_num`, `real_time`, `ext_attrs`, `create_dt`) VALUES (595, 'dev', 'ruoyi_group', 3, 980, 516, '[{\"time_stamp\":\"1742365709894\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.client.JobEndPoint.dispatchJob(JobEndPoint.java:89)\",\"thread\":\"snail-netty-server-7\",\"message\":\"批次:[980] 任务调度成功. \"},{\"time_stamp\":\"1742365710006\",\"level\":\"INFO\",\"port\":\"28080\",\"host\":\"169.254.195.177\",\"location\":\"com.aizuda.snailjob.client.job.core.executor.JobExecutorFutureCallback.onSuccess(JobExecutorFutureCallback.java:81)\",\"thread\":\"snail-job-job-980-1\",\"message\":\"任务执行成功 taskBatchId:[980] [{\\\"status\\\":1,\\\"result\\\":\\\"点检计划生成点检记录成功\\\",\\\"message\\\":\\\"任务执行成功\\\"}]\"}]', 2, 1742365709894, '', '2025-03-19 14:28:41'); COMMIT; -- ---------------------------- -- Table structure for sj_job_summary -- ---------------------------- DROP TABLE IF EXISTS `sj_job_summary`; CREATE TABLE `sj_job_summary` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称', `business_id` bigint NOT NULL COMMENT '业务id (job_id或workflow_id)', `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 3、JOB任务 4、WORKFLOW任务', `trigger_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '统计时间', `success_num` int NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量', `fail_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量', `fail_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因', `stop_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量', `stop_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因', `cancel_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量', `cancel_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_trigger_at_system_task_type_business_id` (`trigger_at`,`system_task_type`,`business_id`) USING BTREE, KEY `idx_namespace_id_group_name_business_id` (`namespace_id`,`group_name`,`business_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='DashBoard_Job'; -- ---------------------------- -- Records of sj_job_summary -- ---------------------------- BEGIN; INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', 1, 3, '2025-02-12 00:00:00', 0, 0, '[]', 0, '[]', 226, '[{\"reason\":2,\"total\":226}]', '2025-02-12 13:16:06', '2025-02-12 17:10:36'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (2, 'dev', 'ruoyi_group', 1, 3, '2025-03-06 00:00:00', 14, 0, '[]', 0, '[]', 24, '[{\"reason\":2,\"total\":24}]', '2025-03-06 13:32:38', '2025-03-06 14:09:36'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (3, 'dev', 'ruoyi_group', 2, 3, '2025-03-07 00:00:00', 418, 58, '[{\"reason\":0,\"total\":58}]', 5, '[{\"reason\":1,\"total\":5}]', 214, '[{\"reason\":2,\"total\":102},{\"reason\":4,\"total\":112}]', '2025-03-07 09:21:35', '2025-03-07 16:47:11'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (4, 'dev', 'ruoyi_group', 2, 3, '2025-03-10 00:00:00', 2, 0, '[]', 0, '[]', 0, '[]', '2025-03-10 11:43:50', '2025-03-10 16:11:50'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (5, 'dev', 'ruoyi_group', 2, 3, '2025-03-11 00:00:00', 5, 0, '[]', 1, '[{\"reason\":1,\"total\":1}]', 0, '[]', '2025-03-11 08:55:41', '2025-03-11 09:49:41'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (6, 'dev', 'ruoyi_group', 2, 3, '2025-03-12 00:00:00', 5, 0, '[]', 0, '[]', 0, '[]', '2025-03-12 09:07:03', '2025-03-12 11:22:28'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (7, 'dev', 'ruoyi_group', 2, 3, '2025-03-13 00:00:00', 1, 0, '[]', 0, '[]', 0, '[]', '2025-03-13 13:20:08', '2025-03-13 13:20:08'); INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (8, 'dev', 'ruoyi_group', 3, 3, '2025-03-19 00:00:00', 7, 0, '[]', 0, '[]', 0, '[]', '2025-03-19 14:25:23', '2025-03-19 14:29:23'); COMMIT; -- ---------------------------- -- Table structure for sj_job_task -- ---------------------------- DROP TABLE IF EXISTS `sj_job_task`; CREATE TABLE `sj_job_task` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `job_id` bigint NOT NULL COMMENT '任务信息id', `task_batch_id` bigint NOT NULL COMMENT '调度任务id', `parent_id` bigint NOT NULL DEFAULT '0' COMMENT '父执行器id', `task_status` tinyint NOT NULL DEFAULT '0' COMMENT '执行的状态 0、失败 1、成功', `retry_count` int NOT NULL DEFAULT '0' COMMENT '重试次数', `mr_stage` tinyint DEFAULT NULL COMMENT '动态分片所处阶段 1:map 2:reduce 3:mergeReduce', `leaf` tinyint NOT NULL DEFAULT '1' COMMENT '叶子节点', `task_name` varchar(255) NOT NULL DEFAULT '' COMMENT '任务名称', `client_info` varchar(128) DEFAULT NULL COMMENT '客户端地址 clientId#ip:port', `wf_context` text COMMENT '工作流全局上下文', `result_message` text NOT NULL COMMENT '执行结果', `args_str` text COMMENT '执行方法参数', `args_type` tinyint NOT NULL DEFAULT '1' COMMENT '参数类型 ', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_task_batch_id_task_status` (`task_batch_id`,`task_status`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB AUTO_INCREMENT=517 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务实例'; -- ---------------------------- -- Records of sj_job_task -- ---------------------------- BEGIN; INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (15, 'dev', 'ruoyi_group', 2, 265, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:21:40', '2025-03-07 09:21:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (16, 'dev', 'ruoyi_group', 2, 266, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:21:50', '2025-03-07 09:21:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (17, 'dev', 'ruoyi_group', 2, 267, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:00', '2025-03-07 09:22:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (18, 'dev', 'ruoyi_group', 2, 268, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:10', '2025-03-07 09:22:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (19, 'dev', 'ruoyi_group', 2, 269, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:20', '2025-03-07 09:22:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (20, 'dev', 'ruoyi_group', 2, 270, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:31', '2025-03-07 09:22:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (21, 'dev', 'ruoyi_group', 2, 271, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:40', '2025-03-07 09:22:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (22, 'dev', 'ruoyi_group', 2, 272, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:22:51', '2025-03-07 09:22:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (23, 'dev', 'ruoyi_group', 2, 273, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:00', '2025-03-07 09:23:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (24, 'dev', 'ruoyi_group', 2, 274, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:10', '2025-03-07 09:23:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (25, 'dev', 'ruoyi_group', 2, 275, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:21', '2025-03-07 09:23:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (26, 'dev', 'ruoyi_group', 2, 276, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:30', '2025-03-07 09:23:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (27, 'dev', 'ruoyi_group', 2, 277, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:40', '2025-03-07 09:23:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (28, 'dev', 'ruoyi_group', 2, 278, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:46', '2025-03-07 09:23:46'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (29, 'dev', 'ruoyi_group', 2, 279, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:23:56', '2025-03-07 09:23:56'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (30, 'dev', 'ruoyi_group', 2, 280, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:06', '2025-03-07 09:24:06'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (31, 'dev', 'ruoyi_group', 2, 281, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:16', '2025-03-07 09:24:16'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (32, 'dev', 'ruoyi_group', 2, 282, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:26', '2025-03-07 09:24:26'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (33, 'dev', 'ruoyi_group', 2, 283, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:36', '2025-03-07 09:24:36'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (34, 'dev', 'ruoyi_group', 2, 284, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:46', '2025-03-07 09:24:46'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (35, 'dev', 'ruoyi_group', 2, 285, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897533932876410880@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:24:56', '2025-03-07 09:24:56'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (36, 'dev', 'ruoyi_group', 2, 311, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:30:50', '2025-03-07 09:30:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (37, 'dev', 'ruoyi_group', 2, 312, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:00', '2025-03-07 09:31:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (38, 'dev', 'ruoyi_group', 2, 313, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:10', '2025-03-07 09:31:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (39, 'dev', 'ruoyi_group', 2, 314, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:20', '2025-03-07 09:31:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (40, 'dev', 'ruoyi_group', 2, 315, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:30', '2025-03-07 09:31:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (41, 'dev', 'ruoyi_group', 2, 316, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:40', '2025-03-07 09:31:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (42, 'dev', 'ruoyi_group', 2, 317, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:31:50', '2025-03-07 09:31:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (43, 'dev', 'ruoyi_group', 2, 318, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:00', '2025-03-07 09:32:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (44, 'dev', 'ruoyi_group', 2, 319, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:10', '2025-03-07 09:32:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (45, 'dev', 'ruoyi_group', 2, 320, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:20', '2025-03-07 09:32:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (46, 'dev', 'ruoyi_group', 2, 321, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:30', '2025-03-07 09:32:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (47, 'dev', 'ruoyi_group', 2, 322, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:40', '2025-03-07 09:32:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (48, 'dev', 'ruoyi_group', 2, 323, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:32:50', '2025-03-07 09:32:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (49, 'dev', 'ruoyi_group', 2, 324, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:00', '2025-03-07 09:33:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (50, 'dev', 'ruoyi_group', 2, 325, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:10', '2025-03-07 09:33:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (51, 'dev', 'ruoyi_group', 2, 326, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:20', '2025-03-07 09:33:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (52, 'dev', 'ruoyi_group', 2, 327, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:30', '2025-03-07 09:33:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (53, 'dev', 'ruoyi_group', 2, 328, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:40', '2025-03-07 09:33:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (54, 'dev', 'ruoyi_group', 2, 329, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:33:50', '2025-03-07 09:33:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (55, 'dev', 'ruoyi_group', 2, 330, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:00', '2025-03-07 09:34:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (56, 'dev', 'ruoyi_group', 2, 331, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:10', '2025-03-07 09:34:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (57, 'dev', 'ruoyi_group', 2, 332, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:20', '2025-03-07 09:34:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (58, 'dev', 'ruoyi_group', 2, 333, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:30', '2025-03-07 09:34:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (59, 'dev', 'ruoyi_group', 2, 334, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:40', '2025-03-07 09:34:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (60, 'dev', 'ruoyi_group', 2, 335, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:34:50', '2025-03-07 09:34:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (61, 'dev', 'ruoyi_group', 2, 336, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:00', '2025-03-07 09:35:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (62, 'dev', 'ruoyi_group', 2, 337, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:10', '2025-03-07 09:35:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (63, 'dev', 'ruoyi_group', 2, 338, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:20', '2025-03-07 09:35:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (64, 'dev', 'ruoyi_group', 2, 339, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:30', '2025-03-07 09:35:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (65, 'dev', 'ruoyi_group', 2, 340, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:40', '2025-03-07 09:35:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (66, 'dev', 'ruoyi_group', 2, 341, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:35:50', '2025-03-07 09:35:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (67, 'dev', 'ruoyi_group', 2, 342, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:00', '2025-03-07 09:36:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (68, 'dev', 'ruoyi_group', 2, 343, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:10', '2025-03-07 09:36:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (69, 'dev', 'ruoyi_group', 2, 344, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:20', '2025-03-07 09:36:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (70, 'dev', 'ruoyi_group', 2, 345, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:30', '2025-03-07 09:36:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (71, 'dev', 'ruoyi_group', 2, 346, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:40', '2025-03-07 09:36:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (72, 'dev', 'ruoyi_group', 2, 347, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:36:50', '2025-03-07 09:36:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (73, 'dev', 'ruoyi_group', 2, 348, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:00', '2025-03-07 09:37:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (74, 'dev', 'ruoyi_group', 2, 349, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:10', '2025-03-07 09:37:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (75, 'dev', 'ruoyi_group', 2, 350, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:20', '2025-03-07 09:37:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (76, 'dev', 'ruoyi_group', 2, 351, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:30', '2025-03-07 09:37:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (77, 'dev', 'ruoyi_group', 2, 352, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:40', '2025-03-07 09:37:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (78, 'dev', 'ruoyi_group', 2, 353, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:37:50', '2025-03-07 09:37:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (79, 'dev', 'ruoyi_group', 2, 354, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:00', '2025-03-07 09:38:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (80, 'dev', 'ruoyi_group', 2, 355, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:10', '2025-03-07 09:38:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (81, 'dev', 'ruoyi_group', 2, 356, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:20', '2025-03-07 09:38:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (82, 'dev', 'ruoyi_group', 2, 357, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:30', '2025-03-07 09:38:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (83, 'dev', 'ruoyi_group', 2, 358, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:40', '2025-03-07 09:38:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (84, 'dev', 'ruoyi_group', 2, 359, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:38:50', '2025-03-07 09:38:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (85, 'dev', 'ruoyi_group', 2, 360, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:00', '2025-03-07 09:39:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (86, 'dev', 'ruoyi_group', 2, 361, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:10', '2025-03-07 09:39:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (87, 'dev', 'ruoyi_group', 2, 362, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:20', '2025-03-07 09:39:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (88, 'dev', 'ruoyi_group', 2, 363, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:30', '2025-03-07 09:39:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (89, 'dev', 'ruoyi_group', 2, 364, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:40', '2025-03-07 09:39:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (90, 'dev', 'ruoyi_group', 2, 365, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:39:50', '2025-03-07 09:39:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (91, 'dev', 'ruoyi_group', 2, 366, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:00', '2025-03-07 09:40:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (92, 'dev', 'ruoyi_group', 2, 367, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:10', '2025-03-07 09:40:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (93, 'dev', 'ruoyi_group', 2, 368, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:20', '2025-03-07 09:40:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (94, 'dev', 'ruoyi_group', 2, 369, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:30', '2025-03-07 09:40:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (95, 'dev', 'ruoyi_group', 2, 370, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:40', '2025-03-07 09:40:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (96, 'dev', 'ruoyi_group', 2, 371, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:40:50', '2025-03-07 09:40:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (97, 'dev', 'ruoyi_group', 2, 372, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:00', '2025-03-07 09:41:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (98, 'dev', 'ruoyi_group', 2, 373, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:10', '2025-03-07 09:41:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (99, 'dev', 'ruoyi_group', 2, 374, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:20', '2025-03-07 09:41:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (100, 'dev', 'ruoyi_group', 2, 375, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:30', '2025-03-07 09:41:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (101, 'dev', 'ruoyi_group', 2, 376, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:40', '2025-03-07 09:41:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (102, 'dev', 'ruoyi_group', 2, 377, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:41:50', '2025-03-07 09:41:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (103, 'dev', 'ruoyi_group', 2, 378, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:00', '2025-03-07 09:42:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (104, 'dev', 'ruoyi_group', 2, 379, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:10', '2025-03-07 09:42:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (105, 'dev', 'ruoyi_group', 2, 380, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:20', '2025-03-07 09:42:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (106, 'dev', 'ruoyi_group', 2, 381, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:30', '2025-03-07 09:42:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (107, 'dev', 'ruoyi_group', 2, 382, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:40', '2025-03-07 09:42:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (108, 'dev', 'ruoyi_group', 2, 383, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:42:50', '2025-03-07 09:42:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (109, 'dev', 'ruoyi_group', 2, 384, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:00', '2025-03-07 09:43:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (110, 'dev', 'ruoyi_group', 2, 385, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:10', '2025-03-07 09:43:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (111, 'dev', 'ruoyi_group', 2, 386, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:20', '2025-03-07 09:43:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (112, 'dev', 'ruoyi_group', 2, 387, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:30', '2025-03-07 09:43:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (113, 'dev', 'ruoyi_group', 2, 388, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:40', '2025-03-07 09:43:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (114, 'dev', 'ruoyi_group', 2, 389, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:43:50', '2025-03-07 09:43:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (115, 'dev', 'ruoyi_group', 2, 390, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:00', '2025-03-07 09:44:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (116, 'dev', 'ruoyi_group', 2, 391, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:10', '2025-03-07 09:44:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (117, 'dev', 'ruoyi_group', 2, 392, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:20', '2025-03-07 09:44:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (118, 'dev', 'ruoyi_group', 2, 393, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:30', '2025-03-07 09:44:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (119, 'dev', 'ruoyi_group', 2, 394, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:40', '2025-03-07 09:44:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (120, 'dev', 'ruoyi_group', 2, 395, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:44:50', '2025-03-07 09:44:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (121, 'dev', 'ruoyi_group', 2, 396, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:00', '2025-03-07 09:45:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (122, 'dev', 'ruoyi_group', 2, 397, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:10', '2025-03-07 09:45:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (123, 'dev', 'ruoyi_group', 2, 398, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:20', '2025-03-07 09:45:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (124, 'dev', 'ruoyi_group', 2, 399, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:30', '2025-03-07 09:45:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (125, 'dev', 'ruoyi_group', 2, 400, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:40', '2025-03-07 09:45:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (126, 'dev', 'ruoyi_group', 2, 401, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:45:50', '2025-03-07 09:45:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (127, 'dev', 'ruoyi_group', 2, 402, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:46:00', '2025-03-07 09:46:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (128, 'dev', 'ruoyi_group', 2, 403, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:46:10', '2025-03-07 09:46:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (129, 'dev', 'ruoyi_group', 2, 404, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:46:20', '2025-03-07 09:46:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (130, 'dev', 'ruoyi_group', 2, 405, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:47:10', '2025-03-07 09:47:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (131, 'dev', 'ruoyi_group', 2, 406, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:47:20', '2025-03-07 09:47:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (132, 'dev', 'ruoyi_group', 2, 407, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:47:30', '2025-03-07 09:47:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (133, 'dev', 'ruoyi_group', 2, 408, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:47:40', '2025-03-07 09:47:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (134, 'dev', 'ruoyi_group', 2, 409, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:47:50', '2025-03-07 09:47:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (135, 'dev', 'ruoyi_group', 2, 410, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:00', '2025-03-07 09:48:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (136, 'dev', 'ruoyi_group', 2, 411, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:10', '2025-03-07 09:48:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (137, 'dev', 'ruoyi_group', 2, 412, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:20', '2025-03-07 09:48:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (138, 'dev', 'ruoyi_group', 2, 413, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:30', '2025-03-07 09:48:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (139, 'dev', 'ruoyi_group', 2, 414, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:40', '2025-03-07 09:48:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (140, 'dev', 'ruoyi_group', 2, 415, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:48:50', '2025-03-07 09:48:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (141, 'dev', 'ruoyi_group', 2, 416, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:00', '2025-03-07 09:49:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (142, 'dev', 'ruoyi_group', 2, 417, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:10', '2025-03-07 09:49:10'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (143, 'dev', 'ruoyi_group', 2, 418, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:20', '2025-03-07 09:49:20'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (144, 'dev', 'ruoyi_group', 2, 419, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:30', '2025-03-07 09:49:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (145, 'dev', 'ruoyi_group', 2, 420, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:40', '2025-03-07 09:49:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (146, 'dev', 'ruoyi_group', 2, 421, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:49:50', '2025-03-07 09:49:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (147, 'dev', 'ruoyi_group', 2, 422, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:50:00', '2025-03-07 09:50:00'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (148, 'dev', 'ruoyi_group', 2, 423, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:50:57', '2025-03-07 09:52:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (149, 'dev', 'ruoyi_group', 2, 428, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:51:47', '2025-03-07 09:52:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (150, 'dev', 'ruoyi_group', 2, 433, 0, 5, 0, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:52:37', '2025-03-07 09:53:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (151, 'dev', 'ruoyi_group', 2, 436, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:53:51', '2025-03-07 09:54:57'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (152, 'dev', 'ruoyi_group', 2, 441, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:54:41', '2025-03-07 09:55:45'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (153, 'dev', 'ruoyi_group', 2, 446, 0, 4, 4, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:55:31', '2025-03-07 09:57:30'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (154, 'dev', 'ruoyi_group', 2, 451, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:56:21', '2025-03-07 09:57:25'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (155, 'dev', 'ruoyi_group', 2, 457, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897822198201098240@169.254.25.90:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:57:21', '2025-03-07 09:58:26'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (156, 'dev', 'ruoyi_group', 2, 462, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:58:11', '2025-03-07 09:59:16'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (157, 'dev', 'ruoyi_group', 2, 467, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:01', '2025-03-07 09:59:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (158, 'dev', 'ruoyi_group', 2, 468, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:11', '2025-03-07 09:59:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (159, 'dev', 'ruoyi_group', 2, 469, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:21', '2025-03-07 09:59:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (160, 'dev', 'ruoyi_group', 2, 470, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:31', '2025-03-07 09:59:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (161, 'dev', 'ruoyi_group', 2, 471, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:41', '2025-03-07 09:59:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (162, 'dev', 'ruoyi_group', 2, 472, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 09:59:51', '2025-03-07 09:59:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (163, 'dev', 'ruoyi_group', 2, 473, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:01', '2025-03-07 10:00:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (164, 'dev', 'ruoyi_group', 2, 474, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:11', '2025-03-07 10:00:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (165, 'dev', 'ruoyi_group', 2, 475, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:21', '2025-03-07 10:00:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (166, 'dev', 'ruoyi_group', 2, 476, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:31', '2025-03-07 10:00:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (167, 'dev', 'ruoyi_group', 2, 477, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:41', '2025-03-07 10:00:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (168, 'dev', 'ruoyi_group', 2, 478, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:00:51', '2025-03-07 10:00:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (169, 'dev', 'ruoyi_group', 2, 479, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:01', '2025-03-07 10:01:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (170, 'dev', 'ruoyi_group', 2, 480, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:11', '2025-03-07 10:01:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (171, 'dev', 'ruoyi_group', 2, 481, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:21', '2025-03-07 10:01:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (172, 'dev', 'ruoyi_group', 2, 482, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:31', '2025-03-07 10:01:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (173, 'dev', 'ruoyi_group', 2, 483, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:42', '2025-03-07 10:01:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (174, 'dev', 'ruoyi_group', 2, 484, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:01:51', '2025-03-07 10:01:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (175, 'dev', 'ruoyi_group', 2, 485, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:01', '2025-03-07 10:02:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (176, 'dev', 'ruoyi_group', 2, 486, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:11', '2025-03-07 10:02:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (177, 'dev', 'ruoyi_group', 2, 487, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:21', '2025-03-07 10:02:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (178, 'dev', 'ruoyi_group', 2, 488, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:31', '2025-03-07 10:02:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (179, 'dev', 'ruoyi_group', 2, 489, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:41', '2025-03-07 10:02:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (180, 'dev', 'ruoyi_group', 2, 490, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:02:51', '2025-03-07 10:02:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (181, 'dev', 'ruoyi_group', 2, 491, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:01', '2025-03-07 10:03:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (182, 'dev', 'ruoyi_group', 2, 492, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:11', '2025-03-07 10:03:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (183, 'dev', 'ruoyi_group', 2, 493, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:21', '2025-03-07 10:03:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (184, 'dev', 'ruoyi_group', 2, 494, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:31', '2025-03-07 10:03:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (185, 'dev', 'ruoyi_group', 2, 495, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:41', '2025-03-07 10:03:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (186, 'dev', 'ruoyi_group', 2, 496, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:03:51', '2025-03-07 10:03:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (187, 'dev', 'ruoyi_group', 2, 497, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:01', '2025-03-07 10:04:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (188, 'dev', 'ruoyi_group', 2, 498, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:11', '2025-03-07 10:04:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (189, 'dev', 'ruoyi_group', 2, 499, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:21', '2025-03-07 10:04:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (190, 'dev', 'ruoyi_group', 2, 500, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:31', '2025-03-07 10:04:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (191, 'dev', 'ruoyi_group', 2, 501, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:41', '2025-03-07 10:04:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (192, 'dev', 'ruoyi_group', 2, 502, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:04:51', '2025-03-07 10:04:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (193, 'dev', 'ruoyi_group', 2, 503, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:01', '2025-03-07 10:05:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (194, 'dev', 'ruoyi_group', 2, 504, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:11', '2025-03-07 10:05:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (195, 'dev', 'ruoyi_group', 2, 505, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:21', '2025-03-07 10:05:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (196, 'dev', 'ruoyi_group', 2, 506, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:31', '2025-03-07 10:05:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (197, 'dev', 'ruoyi_group', 2, 507, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:41', '2025-03-07 10:05:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (198, 'dev', 'ruoyi_group', 2, 508, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:05:51', '2025-03-07 10:05:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (199, 'dev', 'ruoyi_group', 2, 509, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:01', '2025-03-07 10:06:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (200, 'dev', 'ruoyi_group', 2, 510, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:11', '2025-03-07 10:06:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (201, 'dev', 'ruoyi_group', 2, 511, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:21', '2025-03-07 10:06:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (202, 'dev', 'ruoyi_group', 2, 512, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:31', '2025-03-07 10:06:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (203, 'dev', 'ruoyi_group', 2, 513, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:41', '2025-03-07 10:06:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (204, 'dev', 'ruoyi_group', 2, 514, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:06:51', '2025-03-07 10:06:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (205, 'dev', 'ruoyi_group', 2, 515, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:01', '2025-03-07 10:07:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (206, 'dev', 'ruoyi_group', 2, 516, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:11', '2025-03-07 10:07:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (207, 'dev', 'ruoyi_group', 2, 517, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:21', '2025-03-07 10:07:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (208, 'dev', 'ruoyi_group', 2, 518, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:31', '2025-03-07 10:07:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (209, 'dev', 'ruoyi_group', 2, 519, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:41', '2025-03-07 10:07:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (210, 'dev', 'ruoyi_group', 2, 520, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:07:51', '2025-03-07 10:07:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (211, 'dev', 'ruoyi_group', 2, 521, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:01', '2025-03-07 10:08:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (212, 'dev', 'ruoyi_group', 2, 522, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:11', '2025-03-07 10:08:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (213, 'dev', 'ruoyi_group', 2, 523, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:21', '2025-03-07 10:08:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (214, 'dev', 'ruoyi_group', 2, 524, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:31', '2025-03-07 10:08:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (215, 'dev', 'ruoyi_group', 2, 525, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:41', '2025-03-07 10:08:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (216, 'dev', 'ruoyi_group', 2, 526, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:08:51', '2025-03-07 10:08:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (217, 'dev', 'ruoyi_group', 2, 527, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:01', '2025-03-07 10:09:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (218, 'dev', 'ruoyi_group', 2, 528, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:11', '2025-03-07 10:09:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (219, 'dev', 'ruoyi_group', 2, 529, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:21', '2025-03-07 10:09:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (220, 'dev', 'ruoyi_group', 2, 530, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:31', '2025-03-07 10:09:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (221, 'dev', 'ruoyi_group', 2, 531, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:41', '2025-03-07 10:09:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (222, 'dev', 'ruoyi_group', 2, 532, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:09:51', '2025-03-07 10:09:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (223, 'dev', 'ruoyi_group', 2, 533, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:01', '2025-03-07 10:10:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (224, 'dev', 'ruoyi_group', 2, 534, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:11', '2025-03-07 10:10:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (225, 'dev', 'ruoyi_group', 2, 535, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:21', '2025-03-07 10:10:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (226, 'dev', 'ruoyi_group', 2, 536, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:31', '2025-03-07 10:10:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (227, 'dev', 'ruoyi_group', 2, 537, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:41', '2025-03-07 10:10:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (228, 'dev', 'ruoyi_group', 2, 538, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:10:51', '2025-03-07 10:10:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (229, 'dev', 'ruoyi_group', 2, 539, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:01', '2025-03-07 10:11:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (230, 'dev', 'ruoyi_group', 2, 540, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:11', '2025-03-07 10:11:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (231, 'dev', 'ruoyi_group', 2, 541, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:21', '2025-03-07 10:11:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (232, 'dev', 'ruoyi_group', 2, 542, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:31', '2025-03-07 10:11:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (233, 'dev', 'ruoyi_group', 2, 543, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:41', '2025-03-07 10:11:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (234, 'dev', 'ruoyi_group', 2, 544, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:11:51', '2025-03-07 10:11:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (235, 'dev', 'ruoyi_group', 2, 545, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:01', '2025-03-07 10:12:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (236, 'dev', 'ruoyi_group', 2, 546, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:11', '2025-03-07 10:12:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (237, 'dev', 'ruoyi_group', 2, 547, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:21', '2025-03-07 10:12:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (238, 'dev', 'ruoyi_group', 2, 548, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:31', '2025-03-07 10:12:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (239, 'dev', 'ruoyi_group', 2, 549, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:41', '2025-03-07 10:12:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (240, 'dev', 'ruoyi_group', 2, 550, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:12:51', '2025-03-07 10:12:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (241, 'dev', 'ruoyi_group', 2, 551, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:01', '2025-03-07 10:13:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (242, 'dev', 'ruoyi_group', 2, 552, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:11', '2025-03-07 10:13:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (243, 'dev', 'ruoyi_group', 2, 553, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:21', '2025-03-07 10:13:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (244, 'dev', 'ruoyi_group', 2, 554, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:31', '2025-03-07 10:13:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (245, 'dev', 'ruoyi_group', 2, 555, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:41', '2025-03-07 10:13:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (246, 'dev', 'ruoyi_group', 2, 556, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:13:51', '2025-03-07 10:13:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (247, 'dev', 'ruoyi_group', 2, 557, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:01', '2025-03-07 10:14:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (248, 'dev', 'ruoyi_group', 2, 558, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:11', '2025-03-07 10:14:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (249, 'dev', 'ruoyi_group', 2, 559, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:21', '2025-03-07 10:14:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (250, 'dev', 'ruoyi_group', 2, 560, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:31', '2025-03-07 10:14:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (251, 'dev', 'ruoyi_group', 2, 561, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:41', '2025-03-07 10:14:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (252, 'dev', 'ruoyi_group', 2, 562, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:14:51', '2025-03-07 10:14:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (253, 'dev', 'ruoyi_group', 2, 563, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:01', '2025-03-07 10:15:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (254, 'dev', 'ruoyi_group', 2, 564, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:11', '2025-03-07 10:15:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (255, 'dev', 'ruoyi_group', 2, 565, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:21', '2025-03-07 10:15:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (256, 'dev', 'ruoyi_group', 2, 566, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:31', '2025-03-07 10:15:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (257, 'dev', 'ruoyi_group', 2, 567, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:41', '2025-03-07 10:15:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (258, 'dev', 'ruoyi_group', 2, 568, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:15:51', '2025-03-07 10:15:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (259, 'dev', 'ruoyi_group', 2, 569, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:01', '2025-03-07 10:16:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (260, 'dev', 'ruoyi_group', 2, 570, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:11', '2025-03-07 10:16:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (261, 'dev', 'ruoyi_group', 2, 571, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:21', '2025-03-07 10:16:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (262, 'dev', 'ruoyi_group', 2, 572, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:31', '2025-03-07 10:16:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (263, 'dev', 'ruoyi_group', 2, 573, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:41', '2025-03-07 10:16:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (264, 'dev', 'ruoyi_group', 2, 574, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:16:52', '2025-03-07 10:16:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (265, 'dev', 'ruoyi_group', 2, 575, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:01', '2025-03-07 10:17:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (266, 'dev', 'ruoyi_group', 2, 576, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:11', '2025-03-07 10:17:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (267, 'dev', 'ruoyi_group', 2, 577, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:21', '2025-03-07 10:17:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (268, 'dev', 'ruoyi_group', 2, 578, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:31', '2025-03-07 10:17:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (269, 'dev', 'ruoyi_group', 2, 579, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:41', '2025-03-07 10:17:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (270, 'dev', 'ruoyi_group', 2, 580, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:17:51', '2025-03-07 10:17:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (271, 'dev', 'ruoyi_group', 2, 581, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:01', '2025-03-07 10:18:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (272, 'dev', 'ruoyi_group', 2, 582, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:11', '2025-03-07 10:18:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (273, 'dev', 'ruoyi_group', 2, 583, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:21', '2025-03-07 10:18:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (274, 'dev', 'ruoyi_group', 2, 584, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:31', '2025-03-07 10:18:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (275, 'dev', 'ruoyi_group', 2, 585, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:41', '2025-03-07 10:18:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (276, 'dev', 'ruoyi_group', 2, 586, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:18:51', '2025-03-07 10:18:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (277, 'dev', 'ruoyi_group', 2, 587, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:01', '2025-03-07 10:19:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (278, 'dev', 'ruoyi_group', 2, 588, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:11', '2025-03-07 10:19:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (279, 'dev', 'ruoyi_group', 2, 589, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:21', '2025-03-07 10:19:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (280, 'dev', 'ruoyi_group', 2, 590, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:31', '2025-03-07 10:19:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (281, 'dev', 'ruoyi_group', 2, 591, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:41', '2025-03-07 10:19:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (282, 'dev', 'ruoyi_group', 2, 592, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:19:51', '2025-03-07 10:19:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (283, 'dev', 'ruoyi_group', 2, 593, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:01', '2025-03-07 10:20:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (284, 'dev', 'ruoyi_group', 2, 594, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:11', '2025-03-07 10:20:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (285, 'dev', 'ruoyi_group', 2, 595, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:21', '2025-03-07 10:20:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (286, 'dev', 'ruoyi_group', 2, 596, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:31', '2025-03-07 10:20:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (287, 'dev', 'ruoyi_group', 2, 597, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:41', '2025-03-07 10:20:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (288, 'dev', 'ruoyi_group', 2, 598, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:20:51', '2025-03-07 10:20:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (289, 'dev', 'ruoyi_group', 2, 599, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:01', '2025-03-07 10:21:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (290, 'dev', 'ruoyi_group', 2, 600, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:11', '2025-03-07 10:21:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (291, 'dev', 'ruoyi_group', 2, 601, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:21', '2025-03-07 10:21:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (292, 'dev', 'ruoyi_group', 2, 602, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:31', '2025-03-07 10:21:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (293, 'dev', 'ruoyi_group', 2, 603, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:41', '2025-03-07 10:21:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (294, 'dev', 'ruoyi_group', 2, 604, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:21:51', '2025-03-07 10:21:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (295, 'dev', 'ruoyi_group', 2, 605, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:02', '2025-03-07 10:22:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (296, 'dev', 'ruoyi_group', 2, 606, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:11', '2025-03-07 10:22:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (297, 'dev', 'ruoyi_group', 2, 607, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:22', '2025-03-07 10:22:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (298, 'dev', 'ruoyi_group', 2, 608, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:31', '2025-03-07 10:22:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (299, 'dev', 'ruoyi_group', 2, 609, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:42', '2025-03-07 10:22:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (300, 'dev', 'ruoyi_group', 2, 610, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:22:51', '2025-03-07 10:22:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (301, 'dev', 'ruoyi_group', 2, 611, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:01', '2025-03-07 10:23:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (302, 'dev', 'ruoyi_group', 2, 612, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:11', '2025-03-07 10:23:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (303, 'dev', 'ruoyi_group', 2, 613, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:21', '2025-03-07 10:23:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (304, 'dev', 'ruoyi_group', 2, 614, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:31', '2025-03-07 10:23:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (305, 'dev', 'ruoyi_group', 2, 615, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:41', '2025-03-07 10:23:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (306, 'dev', 'ruoyi_group', 2, 616, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:23:51', '2025-03-07 10:23:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (307, 'dev', 'ruoyi_group', 2, 617, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:01', '2025-03-07 10:24:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (308, 'dev', 'ruoyi_group', 2, 618, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:11', '2025-03-07 10:24:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (309, 'dev', 'ruoyi_group', 2, 619, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:21', '2025-03-07 10:24:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (310, 'dev', 'ruoyi_group', 2, 620, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:31', '2025-03-07 10:24:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (311, 'dev', 'ruoyi_group', 2, 621, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:41', '2025-03-07 10:24:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (312, 'dev', 'ruoyi_group', 2, 622, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:24:51', '2025-03-07 10:24:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (313, 'dev', 'ruoyi_group', 2, 623, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:01', '2025-03-07 10:25:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (314, 'dev', 'ruoyi_group', 2, 624, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:12', '2025-03-07 10:25:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (315, 'dev', 'ruoyi_group', 2, 625, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:21', '2025-03-07 10:25:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (316, 'dev', 'ruoyi_group', 2, 626, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:31', '2025-03-07 10:25:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (317, 'dev', 'ruoyi_group', 2, 627, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:41', '2025-03-07 10:25:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (318, 'dev', 'ruoyi_group', 2, 628, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:25:51', '2025-03-07 10:25:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (319, 'dev', 'ruoyi_group', 2, 629, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:01', '2025-03-07 10:26:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (320, 'dev', 'ruoyi_group', 2, 630, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:11', '2025-03-07 10:26:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (321, 'dev', 'ruoyi_group', 2, 631, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:21', '2025-03-07 10:26:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (322, 'dev', 'ruoyi_group', 2, 632, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:31', '2025-03-07 10:26:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (323, 'dev', 'ruoyi_group', 2, 633, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:41', '2025-03-07 10:26:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (324, 'dev', 'ruoyi_group', 2, 634, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:26:51', '2025-03-07 10:26:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (325, 'dev', 'ruoyi_group', 2, 635, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '测试成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:27:01', '2025-03-07 10:27:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (326, 'dev', 'ruoyi_group', 2, 636, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:27:11', '2025-03-07 10:27:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (327, 'dev', 'ruoyi_group', 2, 637, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:27:21', '2025-03-07 10:27:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (328, 'dev', 'ruoyi_group', 2, 638, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897829185449672704@169.254.8.47:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:27:31', '2025-03-07 10:28:36'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (329, 'dev', 'ruoyi_group', 2, 643, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:28:21', '2025-03-07 10:29:05'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (330, 'dev', 'ruoyi_group', 2, 647, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:29:01', '2025-03-07 10:29:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (331, 'dev', 'ruoyi_group', 2, 648, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:29:11', '2025-03-07 10:29:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (332, 'dev', 'ruoyi_group', 2, 649, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:29:21', '2025-03-07 10:29:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (333, 'dev', 'ruoyi_group', 2, 650, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:29:31', '2025-03-07 10:30:07'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (334, 'dev', 'ruoyi_group', 2, 654, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:30:11', '2025-03-07 10:30:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (335, 'dev', 'ruoyi_group', 2, 655, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:30:21', '2025-03-07 10:31:26'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (336, 'dev', 'ruoyi_group', 2, 660, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897836840436219904@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:31:12', '2025-03-07 10:32:16'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (337, 'dev', 'ruoyi_group', 2, 667, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:32:21', '2025-03-07 10:32:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (338, 'dev', 'ruoyi_group', 2, 668, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:32:31', '2025-03-07 10:32:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (339, 'dev', 'ruoyi_group', 2, 669, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:32:41', '2025-03-07 10:32:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (340, 'dev', 'ruoyi_group', 2, 670, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:32:51', '2025-03-07 10:32:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (341, 'dev', 'ruoyi_group', 2, 671, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:01', '2025-03-07 10:33:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (342, 'dev', 'ruoyi_group', 2, 672, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:11', '2025-03-07 10:33:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (343, 'dev', 'ruoyi_group', 2, 673, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:21', '2025-03-07 10:33:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (344, 'dev', 'ruoyi_group', 2, 674, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:32', '2025-03-07 10:33:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (345, 'dev', 'ruoyi_group', 2, 675, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:41', '2025-03-07 10:33:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (346, 'dev', 'ruoyi_group', 2, 676, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:33:51', '2025-03-07 10:33:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (347, 'dev', 'ruoyi_group', 2, 677, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:01', '2025-03-07 10:34:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (348, 'dev', 'ruoyi_group', 2, 678, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:11', '2025-03-07 10:34:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (349, 'dev', 'ruoyi_group', 2, 679, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:21', '2025-03-07 10:34:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (350, 'dev', 'ruoyi_group', 2, 680, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:31', '2025-03-07 10:34:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (351, 'dev', 'ruoyi_group', 2, 681, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:41', '2025-03-07 10:34:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (352, 'dev', 'ruoyi_group', 2, 682, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:34:51', '2025-03-07 10:34:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (353, 'dev', 'ruoyi_group', 2, 683, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:35:01', '2025-03-07 10:35:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (354, 'dev', 'ruoyi_group', 2, 684, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:35:11', '2025-03-07 10:35:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (355, 'dev', 'ruoyi_group', 2, 685, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:35:21', '2025-03-07 10:35:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (356, 'dev', 'ruoyi_group', 2, 686, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:35:31', '2025-03-07 10:35:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (357, 'dev', 'ruoyi_group', 2, 687, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897837678437085184@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:35:41', '2025-03-07 10:36:46'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (358, 'dev', 'ruoyi_group', 2, 692, 0, 3, 1, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:36:31', '2025-03-07 10:36:53'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (359, 'dev', 'ruoyi_group', 2, 695, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:01', '2025-03-07 10:37:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (360, 'dev', 'ruoyi_group', 2, 696, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:11', '2025-03-07 10:37:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (361, 'dev', 'ruoyi_group', 2, 697, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:21', '2025-03-07 10:37:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (362, 'dev', 'ruoyi_group', 2, 698, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:31', '2025-03-07 10:37:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (363, 'dev', 'ruoyi_group', 2, 699, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:41', '2025-03-07 10:37:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (364, 'dev', 'ruoyi_group', 2, 700, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:37:51', '2025-03-07 10:37:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (365, 'dev', 'ruoyi_group', 2, 701, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:01', '2025-03-07 10:38:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (366, 'dev', 'ruoyi_group', 2, 702, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:12', '2025-03-07 10:38:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (367, 'dev', 'ruoyi_group', 2, 703, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:22', '2025-03-07 10:38:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (368, 'dev', 'ruoyi_group', 2, 704, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:31', '2025-03-07 10:38:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (369, 'dev', 'ruoyi_group', 2, 705, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:41', '2025-03-07 10:38:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (370, 'dev', 'ruoyi_group', 2, 706, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:38:51', '2025-03-07 10:38:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (371, 'dev', 'ruoyi_group', 2, 707, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:01', '2025-03-07 10:39:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (372, 'dev', 'ruoyi_group', 2, 708, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:11', '2025-03-07 10:39:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (373, 'dev', 'ruoyi_group', 2, 709, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:21', '2025-03-07 10:39:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (374, 'dev', 'ruoyi_group', 2, 710, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:31', '2025-03-07 10:39:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (375, 'dev', 'ruoyi_group', 2, 711, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:41', '2025-03-07 10:39:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (376, 'dev', 'ruoyi_group', 2, 712, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:39:51', '2025-03-07 10:39:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (377, 'dev', 'ruoyi_group', 2, 713, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:01', '2025-03-07 10:40:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (378, 'dev', 'ruoyi_group', 2, 714, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:11', '2025-03-07 10:40:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (379, 'dev', 'ruoyi_group', 2, 715, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:21', '2025-03-07 10:40:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (380, 'dev', 'ruoyi_group', 2, 716, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:31', '2025-03-07 10:40:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (381, 'dev', 'ruoyi_group', 2, 717, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:41', '2025-03-07 10:40:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (382, 'dev', 'ruoyi_group', 2, 718, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:40:51', '2025-03-07 10:40:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (383, 'dev', 'ruoyi_group', 2, 719, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:01', '2025-03-07 10:41:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (384, 'dev', 'ruoyi_group', 2, 720, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:11', '2025-03-07 10:41:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (385, 'dev', 'ruoyi_group', 2, 721, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:21', '2025-03-07 10:41:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (386, 'dev', 'ruoyi_group', 2, 722, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:31', '2025-03-07 10:41:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (387, 'dev', 'ruoyi_group', 2, 723, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:41', '2025-03-07 10:41:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (388, 'dev', 'ruoyi_group', 2, 724, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:41:52', '2025-03-07 10:41:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (389, 'dev', 'ruoyi_group', 2, 725, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:01', '2025-03-07 10:42:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (390, 'dev', 'ruoyi_group', 2, 726, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:11', '2025-03-07 10:42:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (391, 'dev', 'ruoyi_group', 2, 727, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:21', '2025-03-07 10:42:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (392, 'dev', 'ruoyi_group', 2, 728, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:31', '2025-03-07 10:42:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (393, 'dev', 'ruoyi_group', 2, 729, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:41', '2025-03-07 10:42:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (394, 'dev', 'ruoyi_group', 2, 730, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:42:51', '2025-03-07 10:42:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (395, 'dev', 'ruoyi_group', 2, 731, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:01', '2025-03-07 10:43:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (396, 'dev', 'ruoyi_group', 2, 732, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:11', '2025-03-07 10:43:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (397, 'dev', 'ruoyi_group', 2, 733, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:21', '2025-03-07 10:43:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (398, 'dev', 'ruoyi_group', 2, 734, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:31', '2025-03-07 10:43:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (399, 'dev', 'ruoyi_group', 2, 735, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:41', '2025-03-07 10:43:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (400, 'dev', 'ruoyi_group', 2, 736, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:43:51', '2025-03-07 10:43:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (401, 'dev', 'ruoyi_group', 2, 737, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:01', '2025-03-07 10:44:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (402, 'dev', 'ruoyi_group', 2, 738, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:11', '2025-03-07 10:44:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (403, 'dev', 'ruoyi_group', 2, 739, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:21', '2025-03-07 10:44:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (404, 'dev', 'ruoyi_group', 2, 740, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:31', '2025-03-07 10:44:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (405, 'dev', 'ruoyi_group', 2, 741, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:41', '2025-03-07 10:44:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (406, 'dev', 'ruoyi_group', 2, 742, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:44:51', '2025-03-07 10:44:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (407, 'dev', 'ruoyi_group', 2, 743, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:01', '2025-03-07 10:45:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (408, 'dev', 'ruoyi_group', 2, 744, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:11', '2025-03-07 10:45:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (409, 'dev', 'ruoyi_group', 2, 745, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:21', '2025-03-07 10:45:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (410, 'dev', 'ruoyi_group', 2, 746, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:31', '2025-03-07 10:45:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (411, 'dev', 'ruoyi_group', 2, 747, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:41', '2025-03-07 10:45:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (412, 'dev', 'ruoyi_group', 2, 748, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:45:51', '2025-03-07 10:45:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (413, 'dev', 'ruoyi_group', 2, 749, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:01', '2025-03-07 10:46:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (414, 'dev', 'ruoyi_group', 2, 750, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:11', '2025-03-07 10:46:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (415, 'dev', 'ruoyi_group', 2, 751, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:21', '2025-03-07 10:46:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (416, 'dev', 'ruoyi_group', 2, 752, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:31', '2025-03-07 10:46:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (417, 'dev', 'ruoyi_group', 2, 753, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:41', '2025-03-07 10:46:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (418, 'dev', 'ruoyi_group', 2, 754, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:46:51', '2025-03-07 10:46:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (419, 'dev', 'ruoyi_group', 2, 755, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:01', '2025-03-07 10:47:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (420, 'dev', 'ruoyi_group', 2, 756, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:11', '2025-03-07 10:47:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (421, 'dev', 'ruoyi_group', 2, 757, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:21', '2025-03-07 10:47:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (422, 'dev', 'ruoyi_group', 2, 758, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:31', '2025-03-07 10:47:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (423, 'dev', 'ruoyi_group', 2, 759, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:41', '2025-03-07 10:47:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (424, 'dev', 'ruoyi_group', 2, 760, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:47:51', '2025-03-07 10:47:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (425, 'dev', 'ruoyi_group', 2, 761, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:01', '2025-03-07 10:48:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (426, 'dev', 'ruoyi_group', 2, 762, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:11', '2025-03-07 10:48:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (427, 'dev', 'ruoyi_group', 2, 763, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:21', '2025-03-07 10:48:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (428, 'dev', 'ruoyi_group', 2, 764, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:31', '2025-03-07 10:48:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (429, 'dev', 'ruoyi_group', 2, 765, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:41', '2025-03-07 10:48:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (430, 'dev', 'ruoyi_group', 2, 766, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:48:51', '2025-03-07 10:48:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (431, 'dev', 'ruoyi_group', 2, 767, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:01', '2025-03-07 10:49:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (432, 'dev', 'ruoyi_group', 2, 768, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:12', '2025-03-07 10:49:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (433, 'dev', 'ruoyi_group', 2, 769, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:21', '2025-03-07 10:49:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (434, 'dev', 'ruoyi_group', 2, 770, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:31', '2025-03-07 10:49:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (435, 'dev', 'ruoyi_group', 2, 771, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:41', '2025-03-07 10:49:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (436, 'dev', 'ruoyi_group', 2, 772, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:49:51', '2025-03-07 10:49:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (437, 'dev', 'ruoyi_group', 2, 773, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:01', '2025-03-07 10:50:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (438, 'dev', 'ruoyi_group', 2, 774, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:11', '2025-03-07 10:50:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (439, 'dev', 'ruoyi_group', 2, 775, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:21', '2025-03-07 10:50:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (440, 'dev', 'ruoyi_group', 2, 776, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:31', '2025-03-07 10:50:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (441, 'dev', 'ruoyi_group', 2, 777, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:41', '2025-03-07 10:50:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (442, 'dev', 'ruoyi_group', 2, 778, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:50:51', '2025-03-07 10:50:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (443, 'dev', 'ruoyi_group', 2, 779, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:51:02', '2025-03-07 10:51:03'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (444, 'dev', 'ruoyi_group', 2, 780, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:51:11', '2025-03-07 10:51:12'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (445, 'dev', 'ruoyi_group', 2, 781, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:51:21', '2025-03-07 10:51:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (446, 'dev', 'ruoyi_group', 2, 782, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:51:31', '2025-03-07 10:51:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (447, 'dev', 'ruoyi_group', 2, 783, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897838795212517376@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 10:51:42', '2025-03-07 10:52:46'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (448, 'dev', 'ruoyi_group', 2, 785, 0, 5, 0, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:29:02', '2025-03-07 14:30:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (449, 'dev', 'ruoyi_group', 2, 792, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:30:11', '2025-03-07 14:30:14'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (450, 'dev', 'ruoyi_group', 2, 793, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:30:21', '2025-03-07 14:30:36'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (451, 'dev', 'ruoyi_group', 2, 795, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:30:41', '2025-03-07 14:30:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (452, 'dev', 'ruoyi_group', 2, 796, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:30:51', '2025-03-07 14:30:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (453, 'dev', 'ruoyi_group', 2, 797, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:31:01', '2025-03-07 14:32:05'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (454, 'dev', 'ruoyi_group', 2, 802, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897896206178717696@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:31:51', '2025-03-07 14:32:57'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (455, 'dev', 'ruoyi_group', 2, 812, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897898351007432704@192.168.12.19:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:33:31', '2025-03-07 14:33:32'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (456, 'dev', 'ruoyi_group', 2, 813, 0, 5, 0, NULL, 1, 'CLUSTER_TASK', '1897898351007432704@192.168.12.19:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:33:41', '2025-03-07 14:34:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (457, 'dev', 'ruoyi_group', 2, 825, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897898351007432704@192.168.12.19:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:35:42', '2025-03-07 14:36:46'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (458, 'dev', 'ruoyi_group', 2, 830, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897898351007432704@192.168.12.19:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 14:36:31', '2025-03-07 14:37:35'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (459, 'dev', 'ruoyi_group', 2, 852, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:16:01', '2025-03-07 15:16:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (460, 'dev', 'ruoyi_group', 2, 853, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:16:11', '2025-03-07 15:16:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (461, 'dev', 'ruoyi_group', 2, 854, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:16:21', '2025-03-07 15:16:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (462, 'dev', 'ruoyi_group', 2, 855, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:16:31', '2025-03-07 15:16:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (463, 'dev', 'ruoyi_group', 2, 856, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:35:51', '2025-03-07 15:35:52'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (464, 'dev', 'ruoyi_group', 2, 857, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:36:01', '2025-03-07 15:36:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (465, 'dev', 'ruoyi_group', 2, 858, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:36:11', '2025-03-07 15:36:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (466, 'dev', 'ruoyi_group', 2, 859, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:36:21', '2025-03-07 15:36:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (467, 'dev', 'ruoyi_group', 2, 860, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:36:31', '2025-03-07 15:36:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (468, 'dev', 'ruoyi_group', 2, 861, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:36:41', '2025-03-07 15:36:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (469, 'dev', 'ruoyi_group', 2, 862, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:37:51', '2025-03-07 15:37:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (470, 'dev', 'ruoyi_group', 2, 863, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:38:11', '2025-03-07 15:38:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (471, 'dev', 'ruoyi_group', 2, 864, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:38:21', '2025-03-07 15:39:17'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (472, 'dev', 'ruoyi_group', 2, 870, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:41:11', '2025-03-07 15:41:26'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (473, 'dev', 'ruoyi_group', 2, 872, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:41:52', '2025-03-07 15:42:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (474, 'dev', 'ruoyi_group', 2, 874, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:42:11', '2025-03-07 15:42:11'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (475, 'dev', 'ruoyi_group', 2, 875, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:42:21', '2025-03-07 15:42:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (476, 'dev', 'ruoyi_group', 2, 876, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:42:31', '2025-03-07 15:43:13'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (477, 'dev', 'ruoyi_group', 2, 881, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:45:11', '2025-03-07 15:45:50'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (478, 'dev', 'ruoyi_group', 2, 885, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:45:52', '2025-03-07 15:46:56'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (479, 'dev', 'ruoyi_group', 2, 890, 0, 4, 3, NULL, 1, 'CLUSTER_TASK', '1897900857582219264@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:46:41', '2025-03-07 15:47:45'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (480, 'dev', 'ruoyi_group', 2, 939, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:56:01', '2025-03-07 15:56:40'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (481, 'dev', 'ruoyi_group', 2, 941, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:57:01', '2025-03-07 15:57:16'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (482, 'dev', 'ruoyi_group', 2, 943, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 15:57:21', '2025-03-07 15:57:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (483, 'dev', 'ruoyi_group', 2, 944, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:11:41', '2025-03-07 16:11:41'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (484, 'dev', 'ruoyi_group', 2, 945, 0, 5, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:14:21', '2025-03-07 16:15:22'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (485, 'dev', 'ruoyi_group', 2, 948, 0, 3, 2, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:15:51', '2025-03-07 16:16:49'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (486, 'dev', 'ruoyi_group', 2, 950, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:16:51', '2025-03-07 16:16:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (487, 'dev', 'ruoyi_group', 2, 951, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:17:21', '2025-03-07 16:17:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (488, 'dev', 'ruoyi_group', 2, 952, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:17:51', '2025-03-07 16:17:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (489, 'dev', 'ruoyi_group', 2, 953, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:18:21', '2025-03-07 16:18:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (490, 'dev', 'ruoyi_group', 2, 954, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:18:51', '2025-03-07 16:18:51'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (491, 'dev', 'ruoyi_group', 2, 955, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:19:21', '2025-03-07 16:19:21'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (492, 'dev', 'ruoyi_group', 2, 956, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:21:09', '2025-03-07 16:21:43'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (493, 'dev', 'ruoyi_group', 2, 957, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:43:42', '2025-03-07 16:43:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (494, 'dev', 'ruoyi_group', 2, 958, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:45:42', '2025-03-07 16:45:42'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (495, 'dev', 'ruoyi_group', 2, 959, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1897919009686921216@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-07 16:47:01', '2025-03-07 16:47:01'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (496, 'dev', 'ruoyi_group', 2, 960, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1898941441973153792@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-10 11:43:47', '2025-03-10 11:43:48'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (497, 'dev', 'ruoyi_group', 2, 961, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899006933388546048@192.168.12.19:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-10 16:11:25', '2025-03-10 16:11:25'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (498, 'dev', 'ruoyi_group', 2, 962, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899260753515421696@169.254.65.31:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 08:55:15', '2025-03-11 08:55:15'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (499, 'dev', 'ruoyi_group', 2, 963, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899260753515421696@169.254.65.31:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 08:57:37', '2025-03-11 08:57:37'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (500, 'dev', 'ruoyi_group', 2, 964, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899272573101830144@169.254.65.31:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 09:39:04', '2025-03-11 09:39:04'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (501, 'dev', 'ruoyi_group', 2, 965, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899272573101830144@169.254.65.31:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 09:41:24', '2025-03-11 09:41:24'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (502, 'dev', 'ruoyi_group', 2, 966, 0, 5, 0, NULL, 1, 'CLUSTER_TASK', '1899272573101830144@169.254.65.31:28080', NULL, '', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 09:42:34', '2025-03-11 09:43:34'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (503, 'dev', 'ruoyi_group', 2, 967, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899272573101830144@169.254.65.31:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-11 09:49:07', '2025-03-11 09:49:07'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (504, 'dev', 'ruoyi_group', 2, 968, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899627009637634048@192.168.2.3:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-12 09:06:55', '2025-03-12 09:06:55'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (505, 'dev', 'ruoyi_group', 2, 969, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899627009637634048@192.168.2.3:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-12 09:19:54', '2025-03-12 09:19:57'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (506, 'dev', 'ruoyi_group', 2, 970, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899633832751112192@192.168.2.3:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-12 10:45:31', '2025-03-12 10:45:31'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (507, 'dev', 'ruoyi_group', 2, 971, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899633832751112192@192.168.2.3:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-12 10:46:07', '2025-03-12 10:46:07'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (508, 'dev', 'ruoyi_group', 2, 972, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1899633832751112192@192.168.2.3:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-12 11:22:16', '2025-03-12 11:22:16'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (509, 'dev', 'ruoyi_group', 2, 973, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1900053107526426624@192.168.2.1:28080', NULL, '保养计划生成保养工单成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-13 13:20:00', '2025-03-13 13:20:02'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (510, 'dev', 'ruoyi_group', 3, 974, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:25:15', '2025-03-19 14:25:15'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (511, 'dev', 'ruoyi_group', 3, 975, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:25:25', '2025-03-19 14:25:25'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (512, 'dev', 'ruoyi_group', 3, 976, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:25:35', '2025-03-19 14:25:35'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (513, 'dev', 'ruoyi_group', 3, 977, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:25:45', '2025-03-19 14:25:45'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (514, 'dev', 'ruoyi_group', 3, 978, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:25:55', '2025-03-19 14:25:55'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (515, 'dev', 'ruoyi_group', 3, 979, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:26:05', '2025-03-19 14:26:05'); INSERT INTO `sj_job_task` (`id`, `namespace_id`, `group_name`, `job_id`, `task_batch_id`, `parent_id`, `task_status`, `retry_count`, `mr_stage`, `leaf`, `task_name`, `client_info`, `wf_context`, `result_message`, `args_str`, `args_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (516, 'dev', 'ruoyi_group', 3, 980, 0, 3, 0, NULL, 1, 'CLUSTER_TASK', '1902241535691407360@169.254.195.177:28080', NULL, '点检计划生成点检记录成功', '{\"jobParams\":\"\"}', 2, '', '2025-03-19 14:28:30', '2025-03-19 14:28:30'); COMMIT; -- ---------------------------- -- Table structure for sj_job_task_batch -- ---------------------------- DROP TABLE IF EXISTS `sj_job_task_batch`; CREATE TABLE `sj_job_task_batch` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `job_id` bigint NOT NULL COMMENT '任务id', `workflow_node_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流节点id', `parent_workflow_node_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流任务父批次id', `workflow_task_batch_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流任务批次id', `task_batch_status` tinyint NOT NULL DEFAULT '0' COMMENT '任务批次状态 0、失败 1、成功', `operation_reason` tinyint NOT NULL DEFAULT '0' COMMENT '操作原因', `execution_at` bigint NOT NULL DEFAULT '0' COMMENT '任务执行时间', `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 3、JOB任务 4、WORKFLOW任务', `parent_id` varchar(64) NOT NULL DEFAULT '' COMMENT '父节点', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_job_id_task_batch_status` (`job_id`,`task_batch_status`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`), KEY `idx_workflow_task_batch_id_workflow_node_id` (`workflow_task_batch_id`,`workflow_node_id`) ) ENGINE=InnoDB AUTO_INCREMENT=981 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务批次'; -- ---------------------------- -- Records of sj_job_task_batch -- ---------------------------- BEGIN; INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (24, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:38:56', '2025-02-12 13:38:56'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (265, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310500465, 3, '', '', 0, '2025-03-07 09:21:34', '2025-03-07 09:21:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (266, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310510489, 3, '', '', 0, '2025-03-07 09:21:44', '2025-03-07 09:21:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (267, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310520484, 3, '', '', 0, '2025-03-07 09:21:54', '2025-03-07 09:22:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (268, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310530451, 3, '', '', 0, '2025-03-07 09:22:04', '2025-03-07 09:22:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (269, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310540451, 3, '', '', 0, '2025-03-07 09:22:14', '2025-03-07 09:22:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (270, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310550530, 3, '', '', 0, '2025-03-07 09:22:24', '2025-03-07 09:22:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (271, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310560486, 3, '', '', 0, '2025-03-07 09:22:34', '2025-03-07 09:22:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (272, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310570529, 3, '', '', 0, '2025-03-07 09:22:44', '2025-03-07 09:22:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (273, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310580455, 3, '', '', 0, '2025-03-07 09:22:54', '2025-03-07 09:23:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (274, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310590451, 3, '', '', 0, '2025-03-07 09:23:04', '2025-03-07 09:23:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (275, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310600511, 3, '', '', 0, '2025-03-07 09:23:14', '2025-03-07 09:23:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (276, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310610473, 3, '', '', 0, '2025-03-07 09:23:24', '2025-03-07 09:23:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (277, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310620487, 3, '', '', 0, '2025-03-07 09:23:34', '2025-03-07 09:23:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (278, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310625984, 3, '', '', 0, '2025-03-07 09:23:44', '2025-03-07 09:23:46'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (279, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310635660, 3, '', '', 0, '2025-03-07 09:23:54', '2025-03-07 09:23:56'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (280, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310645656, 3, '', '', 0, '2025-03-07 09:24:04', '2025-03-07 09:24:06'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (281, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310655652, 3, '', '', 0, '2025-03-07 09:24:14', '2025-03-07 09:24:16'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (282, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310665652, 3, '', '', 0, '2025-03-07 09:24:24', '2025-03-07 09:24:26'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (283, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310675644, 3, '', '', 0, '2025-03-07 09:24:34', '2025-03-07 09:24:36'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (284, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310685668, 3, '', '', 0, '2025-03-07 09:24:44', '2025-03-07 09:24:46'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (285, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741310695650, 3, '', '', 0, '2025-03-07 09:24:54', '2025-03-07 09:24:56'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (286, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:26:40', '2025-03-07 09:26:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (287, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:26:50', '2025-03-07 09:26:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (288, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:00', '2025-03-07 09:27:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (289, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:10', '2025-03-07 09:27:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (290, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:20', '2025-03-07 09:27:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (291, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:30', '2025-03-07 09:27:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (292, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:40', '2025-03-07 09:27:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (293, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:27:50', '2025-03-07 09:27:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (294, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:00', '2025-03-07 09:28:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (295, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:10', '2025-03-07 09:28:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (296, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:20', '2025-03-07 09:28:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (297, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:30', '2025-03-07 09:28:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (298, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:40', '2025-03-07 09:28:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (299, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:28:50', '2025-03-07 09:28:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (300, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:00', '2025-03-07 09:29:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (301, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:10', '2025-03-07 09:29:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (302, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:20', '2025-03-07 09:29:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (303, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:30', '2025-03-07 09:29:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (304, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:40', '2025-03-07 09:29:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (305, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:29:50', '2025-03-07 09:29:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (306, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:30:00', '2025-03-07 09:30:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (307, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:30:10', '2025-03-07 09:30:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (308, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:30:20', '2025-03-07 09:30:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (309, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:30:30', '2025-03-07 09:30:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (310, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 09:30:40', '2025-03-07 09:30:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (311, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311049686, 3, '', '', 0, '2025-03-07 09:30:50', '2025-03-07 09:30:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (312, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311059583, 3, '', '', 0, '2025-03-07 09:31:00', '2025-03-07 09:31:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (313, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311069581, 3, '', '', 0, '2025-03-07 09:31:10', '2025-03-07 09:31:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (314, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311079585, 3, '', '', 0, '2025-03-07 09:31:20', '2025-03-07 09:31:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (315, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311089585, 3, '', '', 0, '2025-03-07 09:31:30', '2025-03-07 09:31:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (316, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311099682, 3, '', '', 0, '2025-03-07 09:31:40', '2025-03-07 09:31:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (317, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311109586, 3, '', '', 0, '2025-03-07 09:31:50', '2025-03-07 09:31:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (318, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311119686, 3, '', '', 0, '2025-03-07 09:32:00', '2025-03-07 09:32:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (319, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311129581, 3, '', '', 0, '2025-03-07 09:32:10', '2025-03-07 09:32:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (320, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311139587, 3, '', '', 0, '2025-03-07 09:32:20', '2025-03-07 09:32:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (321, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311149581, 3, '', '', 0, '2025-03-07 09:32:30', '2025-03-07 09:32:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (322, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311159687, 3, '', '', 0, '2025-03-07 09:32:40', '2025-03-07 09:32:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (323, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311169584, 3, '', '', 0, '2025-03-07 09:32:50', '2025-03-07 09:32:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (324, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311179586, 3, '', '', 0, '2025-03-07 09:33:00', '2025-03-07 09:33:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (325, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311189591, 3, '', '', 0, '2025-03-07 09:33:10', '2025-03-07 09:33:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (326, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311199585, 3, '', '', 0, '2025-03-07 09:33:20', '2025-03-07 09:33:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (327, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311209585, 3, '', '', 0, '2025-03-07 09:33:30', '2025-03-07 09:33:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (328, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311219700, 3, '', '', 0, '2025-03-07 09:33:40', '2025-03-07 09:33:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (329, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311229695, 3, '', '', 0, '2025-03-07 09:33:50', '2025-03-07 09:33:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (330, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311239583, 3, '', '', 0, '2025-03-07 09:34:00', '2025-03-07 09:34:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (331, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311249689, 3, '', '', 0, '2025-03-07 09:34:10', '2025-03-07 09:34:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (332, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311259786, 3, '', '', 0, '2025-03-07 09:34:20', '2025-03-07 09:34:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (333, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311269583, 3, '', '', 0, '2025-03-07 09:34:30', '2025-03-07 09:34:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (334, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311279584, 3, '', '', 0, '2025-03-07 09:34:40', '2025-03-07 09:34:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (335, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311289788, 3, '', '', 0, '2025-03-07 09:34:50', '2025-03-07 09:34:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (336, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311299586, 3, '', '', 0, '2025-03-07 09:35:00', '2025-03-07 09:35:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (337, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311309695, 3, '', '', 0, '2025-03-07 09:35:10', '2025-03-07 09:35:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (338, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311319586, 3, '', '', 0, '2025-03-07 09:35:20', '2025-03-07 09:35:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (339, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311329584, 3, '', '', 0, '2025-03-07 09:35:30', '2025-03-07 09:35:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (340, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311339586, 3, '', '', 0, '2025-03-07 09:35:40', '2025-03-07 09:35:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (341, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311349585, 3, '', '', 0, '2025-03-07 09:35:50', '2025-03-07 09:35:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (342, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311359586, 3, '', '', 0, '2025-03-07 09:36:00', '2025-03-07 09:36:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (343, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311369687, 3, '', '', 0, '2025-03-07 09:36:10', '2025-03-07 09:36:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (344, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311379688, 3, '', '', 0, '2025-03-07 09:36:20', '2025-03-07 09:36:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (345, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311389581, 3, '', '', 0, '2025-03-07 09:36:30', '2025-03-07 09:36:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (346, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311399586, 3, '', '', 0, '2025-03-07 09:36:40', '2025-03-07 09:36:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (347, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311409582, 3, '', '', 0, '2025-03-07 09:36:50', '2025-03-07 09:36:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (348, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311419586, 3, '', '', 0, '2025-03-07 09:37:00', '2025-03-07 09:37:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (349, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311429587, 3, '', '', 0, '2025-03-07 09:37:10', '2025-03-07 09:37:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (350, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311439584, 3, '', '', 0, '2025-03-07 09:37:20', '2025-03-07 09:37:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (351, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311449586, 3, '', '', 0, '2025-03-07 09:37:30', '2025-03-07 09:37:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (352, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311459587, 3, '', '', 0, '2025-03-07 09:37:40', '2025-03-07 09:37:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (353, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311469888, 3, '', '', 0, '2025-03-07 09:37:50', '2025-03-07 09:37:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (354, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311479585, 3, '', '', 0, '2025-03-07 09:38:00', '2025-03-07 09:38:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (355, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311489588, 3, '', '', 0, '2025-03-07 09:38:10', '2025-03-07 09:38:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (356, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311499585, 3, '', '', 0, '2025-03-07 09:38:20', '2025-03-07 09:38:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (357, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311509585, 3, '', '', 0, '2025-03-07 09:38:30', '2025-03-07 09:38:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (358, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311519587, 3, '', '', 0, '2025-03-07 09:38:40', '2025-03-07 09:38:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (359, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311529588, 3, '', '', 0, '2025-03-07 09:38:50', '2025-03-07 09:38:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (360, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311539587, 3, '', '', 0, '2025-03-07 09:39:00', '2025-03-07 09:39:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (361, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311549685, 3, '', '', 0, '2025-03-07 09:39:10', '2025-03-07 09:39:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (362, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311559994, 3, '', '', 0, '2025-03-07 09:39:20', '2025-03-07 09:39:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (363, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311569988, 3, '', '', 0, '2025-03-07 09:39:30', '2025-03-07 09:39:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (364, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311579587, 3, '', '', 0, '2025-03-07 09:39:40', '2025-03-07 09:39:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (365, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311589588, 3, '', '', 0, '2025-03-07 09:39:50', '2025-03-07 09:39:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (366, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311599584, 3, '', '', 0, '2025-03-07 09:40:00', '2025-03-07 09:40:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (367, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311609584, 3, '', '', 0, '2025-03-07 09:40:10', '2025-03-07 09:40:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (368, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311619584, 3, '', '', 0, '2025-03-07 09:40:20', '2025-03-07 09:40:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (369, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311629588, 3, '', '', 0, '2025-03-07 09:40:30', '2025-03-07 09:40:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (370, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311639785, 3, '', '', 0, '2025-03-07 09:40:40', '2025-03-07 09:40:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (371, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311649587, 3, '', '', 0, '2025-03-07 09:40:50', '2025-03-07 09:40:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (372, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311659588, 3, '', '', 0, '2025-03-07 09:41:00', '2025-03-07 09:41:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (373, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311669587, 3, '', '', 0, '2025-03-07 09:41:10', '2025-03-07 09:41:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (374, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311679592, 3, '', '', 0, '2025-03-07 09:41:20', '2025-03-07 09:41:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (375, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311689789, 3, '', '', 0, '2025-03-07 09:41:30', '2025-03-07 09:41:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (376, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311699691, 3, '', '', 0, '2025-03-07 09:41:40', '2025-03-07 09:41:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (377, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311709589, 3, '', '', 0, '2025-03-07 09:41:50', '2025-03-07 09:41:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (378, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311719687, 3, '', '', 0, '2025-03-07 09:42:00', '2025-03-07 09:42:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (379, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311729689, 3, '', '', 0, '2025-03-07 09:42:10', '2025-03-07 09:42:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (380, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311739585, 3, '', '', 0, '2025-03-07 09:42:20', '2025-03-07 09:42:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (381, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311749589, 3, '', '', 0, '2025-03-07 09:42:30', '2025-03-07 09:42:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (382, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311759688, 3, '', '', 0, '2025-03-07 09:42:40', '2025-03-07 09:42:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (383, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311769587, 3, '', '', 0, '2025-03-07 09:42:50', '2025-03-07 09:42:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (384, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311779696, 3, '', '', 0, '2025-03-07 09:43:00', '2025-03-07 09:43:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (385, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311789836, 3, '', '', 0, '2025-03-07 09:43:10', '2025-03-07 09:43:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (386, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311799687, 3, '', '', 0, '2025-03-07 09:43:20', '2025-03-07 09:43:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (387, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311809592, 3, '', '', 0, '2025-03-07 09:43:30', '2025-03-07 09:43:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (388, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311819987, 3, '', '', 0, '2025-03-07 09:43:40', '2025-03-07 09:43:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (389, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311829589, 3, '', '', 0, '2025-03-07 09:43:50', '2025-03-07 09:43:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (390, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311839588, 3, '', '', 0, '2025-03-07 09:44:00', '2025-03-07 09:44:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (391, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311849846, 3, '', '', 0, '2025-03-07 09:44:10', '2025-03-07 09:44:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (392, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311859589, 3, '', '', 0, '2025-03-07 09:44:20', '2025-03-07 09:44:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (393, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311869592, 3, '', '', 0, '2025-03-07 09:44:29', '2025-03-07 09:44:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (394, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311879596, 3, '', '', 0, '2025-03-07 09:44:39', '2025-03-07 09:44:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (395, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311889591, 3, '', '', 0, '2025-03-07 09:44:49', '2025-03-07 09:44:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (396, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311899594, 3, '', '', 0, '2025-03-07 09:44:59', '2025-03-07 09:45:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (397, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311909590, 3, '', '', 0, '2025-03-07 09:45:09', '2025-03-07 09:45:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (398, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311919594, 3, '', '', 0, '2025-03-07 09:45:19', '2025-03-07 09:45:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (399, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311929594, 3, '', '', 0, '2025-03-07 09:45:29', '2025-03-07 09:45:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (400, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311939593, 3, '', '', 0, '2025-03-07 09:45:39', '2025-03-07 09:45:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (401, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311949592, 3, '', '', 0, '2025-03-07 09:45:49', '2025-03-07 09:45:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (402, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311959591, 3, '', '', 0, '2025-03-07 09:45:59', '2025-03-07 09:46:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (403, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311969592, 3, '', '', 0, '2025-03-07 09:46:09', '2025-03-07 09:46:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (404, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741311979589, 3, '', '', 0, '2025-03-07 09:46:19', '2025-03-07 09:46:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (405, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312029871, 3, '', '', 0, '2025-03-07 09:47:10', '2025-03-07 09:47:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (406, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312039759, 3, '', '', 0, '2025-03-07 09:47:20', '2025-03-07 09:47:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (407, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312049857, 3, '', '', 0, '2025-03-07 09:47:30', '2025-03-07 09:47:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (408, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312059759, 3, '', '', 0, '2025-03-07 09:47:40', '2025-03-07 09:47:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (409, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312069759, 3, '', '', 0, '2025-03-07 09:47:50', '2025-03-07 09:47:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (410, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312079855, 3, '', '', 0, '2025-03-07 09:48:00', '2025-03-07 09:48:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (411, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312089757, 3, '', '', 0, '2025-03-07 09:48:10', '2025-03-07 09:48:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (412, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312099757, 3, '', '', 0, '2025-03-07 09:48:20', '2025-03-07 09:48:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (413, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312109757, 3, '', '', 0, '2025-03-07 09:48:30', '2025-03-07 09:48:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (414, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312119753, 3, '', '', 0, '2025-03-07 09:48:40', '2025-03-07 09:48:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (415, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312129757, 3, '', '', 0, '2025-03-07 09:48:50', '2025-03-07 09:48:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (416, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312139755, 3, '', '', 0, '2025-03-07 09:49:00', '2025-03-07 09:49:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (417, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312149753, 3, '', '', 0, '2025-03-07 09:49:10', '2025-03-07 09:49:10'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (418, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312159774, 3, '', '', 0, '2025-03-07 09:49:20', '2025-03-07 09:49:20'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (419, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312169751, 3, '', '', 0, '2025-03-07 09:49:30', '2025-03-07 09:49:30'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (420, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312179753, 3, '', '', 0, '2025-03-07 09:49:40', '2025-03-07 09:49:40'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (421, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312189752, 3, '', '', 0, '2025-03-07 09:49:50', '2025-03-07 09:49:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (422, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312199752, 3, '', '', 0, '2025-03-07 09:50:00', '2025-03-07 09:50:00'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (423, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312257064, 3, '', '', 0, '2025-03-07 09:50:57', '2025-03-07 09:51:39'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (424, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:51:07', '2025-03-07 09:51:07'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (425, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:51:17', '2025-03-07 09:51:17'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (426, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:51:27', '2025-03-07 09:51:27'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (427, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:51:37', '2025-03-07 09:51:37'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (428, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312306836, 3, '', '', 0, '2025-03-07 09:51:47', '2025-03-07 09:52:28'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (429, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:51:57', '2025-03-07 09:51:57'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (430, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:52:07', '2025-03-07 09:52:07'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (431, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:52:17', '2025-03-07 09:52:17'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (432, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:52:27', '2025-03-07 09:52:27'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (433, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741312356835, 3, '', '', 0, '2025-03-07 09:52:37', '2025-03-07 09:53:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (434, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:52:47', '2025-03-07 09:52:47'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (435, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:53:41', '2025-03-07 09:53:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (436, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312431448, 3, '', '', 0, '2025-03-07 09:53:51', '2025-03-07 09:54:34'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (437, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:54:01', '2025-03-07 09:54:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (438, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:54:11', '2025-03-07 09:54:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (439, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:54:21', '2025-03-07 09:54:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (440, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:54:31', '2025-03-07 09:54:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (441, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312481344, 3, '', '', 0, '2025-03-07 09:54:41', '2025-03-07 09:55:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (442, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:54:51', '2025-03-07 09:54:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (443, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:55:01', '2025-03-07 09:55:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (444, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:55:11', '2025-03-07 09:55:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (445, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:55:21', '2025-03-07 09:55:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (446, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741312531442, 3, '', '', 0, '2025-03-07 09:55:31', '2025-03-07 09:57:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (447, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:55:41', '2025-03-07 09:55:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (448, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:55:51', '2025-03-07 09:55:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (449, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:56:01', '2025-03-07 09:56:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (450, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:56:11', '2025-03-07 09:56:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (451, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312581338, 3, '', '', 0, '2025-03-07 09:56:21', '2025-03-07 09:57:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (452, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:56:31', '2025-03-07 09:56:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (453, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:56:41', '2025-03-07 09:56:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (454, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:56:51', '2025-03-07 09:56:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (455, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:57:01', '2025-03-07 09:57:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (456, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:57:11', '2025-03-07 09:57:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (457, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312641436, 3, '', '', 0, '2025-03-07 09:57:21', '2025-03-07 09:58:03'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (458, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:57:31', '2025-03-07 09:57:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (459, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:57:41', '2025-03-07 09:57:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (460, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:57:51', '2025-03-07 09:57:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (461, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:58:01', '2025-03-07 09:58:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (462, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741312691461, 3, '', '', 0, '2025-03-07 09:58:11', '2025-03-07 09:58:53'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (463, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:58:21', '2025-03-07 09:58:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (464, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:58:31', '2025-03-07 09:58:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (465, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:58:41', '2025-03-07 09:58:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (466, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 09:58:51', '2025-03-07 09:58:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (467, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312741429, 3, '', '', 0, '2025-03-07 09:59:01', '2025-03-07 09:59:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (468, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312751436, 3, '', '', 0, '2025-03-07 09:59:11', '2025-03-07 09:59:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (469, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312761444, 3, '', '', 0, '2025-03-07 09:59:21', '2025-03-07 09:59:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (470, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312771428, 3, '', '', 0, '2025-03-07 09:59:31', '2025-03-07 09:59:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (471, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312781430, 3, '', '', 0, '2025-03-07 09:59:41', '2025-03-07 09:59:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (472, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312791427, 3, '', '', 0, '2025-03-07 09:59:51', '2025-03-07 09:59:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (473, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312801428, 3, '', '', 0, '2025-03-07 10:00:01', '2025-03-07 10:00:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (474, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312811429, 3, '', '', 0, '2025-03-07 10:00:11', '2025-03-07 10:00:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (475, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312821427, 3, '', '', 0, '2025-03-07 10:00:21', '2025-03-07 10:00:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (476, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312831428, 3, '', '', 0, '2025-03-07 10:00:31', '2025-03-07 10:00:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (477, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312841427, 3, '', '', 0, '2025-03-07 10:00:41', '2025-03-07 10:00:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (478, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312851422, 3, '', '', 0, '2025-03-07 10:00:51', '2025-03-07 10:00:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (479, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312861424, 3, '', '', 0, '2025-03-07 10:01:01', '2025-03-07 10:01:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (480, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312871425, 3, '', '', 0, '2025-03-07 10:01:11', '2025-03-07 10:01:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (481, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312881422, 3, '', '', 0, '2025-03-07 10:01:21', '2025-03-07 10:01:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (482, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312891425, 3, '', '', 0, '2025-03-07 10:01:31', '2025-03-07 10:01:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (483, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312901425, 3, '', '', 0, '2025-03-07 10:01:41', '2025-03-07 10:01:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (484, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312911421, 3, '', '', 0, '2025-03-07 10:01:51', '2025-03-07 10:01:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (485, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312921421, 3, '', '', 0, '2025-03-07 10:02:01', '2025-03-07 10:02:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (486, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312931423, 3, '', '', 0, '2025-03-07 10:02:11', '2025-03-07 10:02:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (487, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312941422, 3, '', '', 0, '2025-03-07 10:02:21', '2025-03-07 10:02:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (488, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312951421, 3, '', '', 0, '2025-03-07 10:02:31', '2025-03-07 10:02:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (489, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312961423, 3, '', '', 0, '2025-03-07 10:02:41', '2025-03-07 10:02:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (490, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312971420, 3, '', '', 0, '2025-03-07 10:02:51', '2025-03-07 10:02:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (491, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312981416, 3, '', '', 0, '2025-03-07 10:03:01', '2025-03-07 10:03:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (492, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741312991421, 3, '', '', 0, '2025-03-07 10:03:11', '2025-03-07 10:03:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (493, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313001417, 3, '', '', 0, '2025-03-07 10:03:21', '2025-03-07 10:03:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (494, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313011419, 3, '', '', 0, '2025-03-07 10:03:31', '2025-03-07 10:03:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (495, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313021420, 3, '', '', 0, '2025-03-07 10:03:41', '2025-03-07 10:03:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (496, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313031415, 3, '', '', 0, '2025-03-07 10:03:51', '2025-03-07 10:03:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (497, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313041417, 3, '', '', 0, '2025-03-07 10:04:01', '2025-03-07 10:04:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (498, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313051417, 3, '', '', 0, '2025-03-07 10:04:11', '2025-03-07 10:04:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (499, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313061413, 3, '', '', 0, '2025-03-07 10:04:21', '2025-03-07 10:04:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (500, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313071421, 3, '', '', 0, '2025-03-07 10:04:31', '2025-03-07 10:04:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (501, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313081420, 3, '', '', 0, '2025-03-07 10:04:41', '2025-03-07 10:04:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (502, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313091414, 3, '', '', 0, '2025-03-07 10:04:51', '2025-03-07 10:04:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (503, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313101420, 3, '', '', 0, '2025-03-07 10:05:01', '2025-03-07 10:05:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (504, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313111421, 3, '', '', 0, '2025-03-07 10:05:11', '2025-03-07 10:05:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (505, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313121413, 3, '', '', 0, '2025-03-07 10:05:21', '2025-03-07 10:05:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (506, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313131420, 3, '', '', 0, '2025-03-07 10:05:31', '2025-03-07 10:05:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (507, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313141418, 3, '', '', 0, '2025-03-07 10:05:41', '2025-03-07 10:05:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (508, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313151419, 3, '', '', 0, '2025-03-07 10:05:51', '2025-03-07 10:05:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (509, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313161421, 3, '', '', 0, '2025-03-07 10:06:01', '2025-03-07 10:06:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (510, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313171417, 3, '', '', 0, '2025-03-07 10:06:11', '2025-03-07 10:06:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (511, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313181414, 3, '', '', 0, '2025-03-07 10:06:21', '2025-03-07 10:06:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (512, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313191415, 3, '', '', 0, '2025-03-07 10:06:31', '2025-03-07 10:06:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (513, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313201413, 3, '', '', 0, '2025-03-07 10:06:41', '2025-03-07 10:06:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (514, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313211417, 3, '', '', 0, '2025-03-07 10:06:51', '2025-03-07 10:06:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (515, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313221416, 3, '', '', 0, '2025-03-07 10:07:01', '2025-03-07 10:07:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (516, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313231410, 3, '', '', 0, '2025-03-07 10:07:11', '2025-03-07 10:07:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (517, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313241412, 3, '', '', 0, '2025-03-07 10:07:21', '2025-03-07 10:07:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (518, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313251412, 3, '', '', 0, '2025-03-07 10:07:31', '2025-03-07 10:07:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (519, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313261408, 3, '', '', 0, '2025-03-07 10:07:41', '2025-03-07 10:07:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (520, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313271417, 3, '', '', 0, '2025-03-07 10:07:51', '2025-03-07 10:07:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (521, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313281410, 3, '', '', 0, '2025-03-07 10:08:01', '2025-03-07 10:08:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (522, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313291413, 3, '', '', 0, '2025-03-07 10:08:11', '2025-03-07 10:08:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (523, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313301413, 3, '', '', 0, '2025-03-07 10:08:21', '2025-03-07 10:08:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (524, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313311411, 3, '', '', 0, '2025-03-07 10:08:31', '2025-03-07 10:08:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (525, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313321409, 3, '', '', 0, '2025-03-07 10:08:41', '2025-03-07 10:08:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (526, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313331415, 3, '', '', 0, '2025-03-07 10:08:51', '2025-03-07 10:08:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (527, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313341409, 3, '', '', 0, '2025-03-07 10:09:01', '2025-03-07 10:09:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (528, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313351410, 3, '', '', 0, '2025-03-07 10:09:11', '2025-03-07 10:09:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (529, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313361407, 3, '', '', 0, '2025-03-07 10:09:21', '2025-03-07 10:09:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (530, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313371411, 3, '', '', 0, '2025-03-07 10:09:31', '2025-03-07 10:09:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (531, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313381408, 3, '', '', 0, '2025-03-07 10:09:41', '2025-03-07 10:09:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (532, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313391408, 3, '', '', 0, '2025-03-07 10:09:51', '2025-03-07 10:09:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (533, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313401407, 3, '', '', 0, '2025-03-07 10:10:01', '2025-03-07 10:10:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (534, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313411408, 3, '', '', 0, '2025-03-07 10:10:11', '2025-03-07 10:10:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (535, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313421409, 3, '', '', 0, '2025-03-07 10:10:21', '2025-03-07 10:10:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (536, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313431407, 3, '', '', 0, '2025-03-07 10:10:31', '2025-03-07 10:10:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (537, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313441406, 3, '', '', 0, '2025-03-07 10:10:41', '2025-03-07 10:10:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (538, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313451407, 3, '', '', 0, '2025-03-07 10:10:51', '2025-03-07 10:10:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (539, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313461403, 3, '', '', 0, '2025-03-07 10:11:01', '2025-03-07 10:11:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (540, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313471414, 3, '', '', 0, '2025-03-07 10:11:11', '2025-03-07 10:11:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (541, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313481406, 3, '', '', 0, '2025-03-07 10:11:21', '2025-03-07 10:11:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (542, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313491401, 3, '', '', 0, '2025-03-07 10:11:31', '2025-03-07 10:11:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (543, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313501400, 3, '', '', 0, '2025-03-07 10:11:41', '2025-03-07 10:11:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (544, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313511404, 3, '', '', 0, '2025-03-07 10:11:51', '2025-03-07 10:11:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (545, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313521400, 3, '', '', 0, '2025-03-07 10:12:01', '2025-03-07 10:12:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (546, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313531401, 3, '', '', 0, '2025-03-07 10:12:11', '2025-03-07 10:12:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (547, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313541403, 3, '', '', 0, '2025-03-07 10:12:21', '2025-03-07 10:12:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (548, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313551400, 3, '', '', 0, '2025-03-07 10:12:31', '2025-03-07 10:12:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (549, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313561401, 3, '', '', 0, '2025-03-07 10:12:41', '2025-03-07 10:12:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (550, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313571399, 3, '', '', 0, '2025-03-07 10:12:51', '2025-03-07 10:12:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (551, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313581400, 3, '', '', 0, '2025-03-07 10:13:01', '2025-03-07 10:13:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (552, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313591400, 3, '', '', 0, '2025-03-07 10:13:11', '2025-03-07 10:13:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (553, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313601400, 3, '', '', 0, '2025-03-07 10:13:21', '2025-03-07 10:13:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (554, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313611395, 3, '', '', 0, '2025-03-07 10:13:31', '2025-03-07 10:13:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (555, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313621399, 3, '', '', 0, '2025-03-07 10:13:41', '2025-03-07 10:13:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (556, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313631395, 3, '', '', 0, '2025-03-07 10:13:51', '2025-03-07 10:13:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (557, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313641397, 3, '', '', 0, '2025-03-07 10:14:01', '2025-03-07 10:14:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (558, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313651388, 3, '', '', 0, '2025-03-07 10:14:11', '2025-03-07 10:14:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (559, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313661397, 3, '', '', 0, '2025-03-07 10:14:21', '2025-03-07 10:14:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (560, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313671397, 3, '', '', 0, '2025-03-07 10:14:31', '2025-03-07 10:14:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (561, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313681399, 3, '', '', 0, '2025-03-07 10:14:41', '2025-03-07 10:14:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (562, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313691401, 3, '', '', 0, '2025-03-07 10:14:51', '2025-03-07 10:14:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (563, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313701402, 3, '', '', 0, '2025-03-07 10:15:01', '2025-03-07 10:15:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (564, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313711400, 3, '', '', 0, '2025-03-07 10:15:11', '2025-03-07 10:15:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (565, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313721404, 3, '', '', 0, '2025-03-07 10:15:21', '2025-03-07 10:15:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (566, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313731400, 3, '', '', 0, '2025-03-07 10:15:31', '2025-03-07 10:15:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (567, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313741399, 3, '', '', 0, '2025-03-07 10:15:41', '2025-03-07 10:15:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (568, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313751392, 3, '', '', 0, '2025-03-07 10:15:51', '2025-03-07 10:15:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (569, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313761398, 3, '', '', 0, '2025-03-07 10:16:01', '2025-03-07 10:16:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (570, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313771401, 3, '', '', 0, '2025-03-07 10:16:11', '2025-03-07 10:16:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (571, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313781401, 3, '', '', 0, '2025-03-07 10:16:21', '2025-03-07 10:16:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (572, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313791398, 3, '', '', 0, '2025-03-07 10:16:31', '2025-03-07 10:16:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (573, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313801397, 3, '', '', 0, '2025-03-07 10:16:41', '2025-03-07 10:16:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (574, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313811578, 3, '', '', 0, '2025-03-07 10:16:51', '2025-03-07 10:16:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (575, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313821398, 3, '', '', 0, '2025-03-07 10:17:01', '2025-03-07 10:17:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (576, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313831396, 3, '', '', 0, '2025-03-07 10:17:11', '2025-03-07 10:17:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (577, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313841392, 3, '', '', 0, '2025-03-07 10:17:21', '2025-03-07 10:17:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (578, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313851392, 3, '', '', 0, '2025-03-07 10:17:31', '2025-03-07 10:17:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (579, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313861395, 3, '', '', 0, '2025-03-07 10:17:41', '2025-03-07 10:17:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (580, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313871397, 3, '', '', 0, '2025-03-07 10:17:51', '2025-03-07 10:17:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (581, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313881392, 3, '', '', 0, '2025-03-07 10:18:01', '2025-03-07 10:18:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (582, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313891392, 3, '', '', 0, '2025-03-07 10:18:11', '2025-03-07 10:18:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (583, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313901395, 3, '', '', 0, '2025-03-07 10:18:21', '2025-03-07 10:18:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (584, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313911389, 3, '', '', 0, '2025-03-07 10:18:31', '2025-03-07 10:18:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (585, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313921390, 3, '', '', 0, '2025-03-07 10:18:41', '2025-03-07 10:18:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (586, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313931392, 3, '', '', 0, '2025-03-07 10:18:51', '2025-03-07 10:18:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (587, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313941386, 3, '', '', 0, '2025-03-07 10:19:01', '2025-03-07 10:19:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (588, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313951386, 3, '', '', 0, '2025-03-07 10:19:11', '2025-03-07 10:19:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (589, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313961392, 3, '', '', 0, '2025-03-07 10:19:21', '2025-03-07 10:19:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (590, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313971385, 3, '', '', 0, '2025-03-07 10:19:31', '2025-03-07 10:19:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (591, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313981387, 3, '', '', 0, '2025-03-07 10:19:41', '2025-03-07 10:19:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (592, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741313991386, 3, '', '', 0, '2025-03-07 10:19:51', '2025-03-07 10:19:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (593, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314001385, 3, '', '', 0, '2025-03-07 10:20:01', '2025-03-07 10:20:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (594, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314011385, 3, '', '', 0, '2025-03-07 10:20:11', '2025-03-07 10:20:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (595, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314021385, 3, '', '', 0, '2025-03-07 10:20:21', '2025-03-07 10:20:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (596, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314031383, 3, '', '', 0, '2025-03-07 10:20:31', '2025-03-07 10:20:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (597, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314041385, 3, '', '', 0, '2025-03-07 10:20:41', '2025-03-07 10:20:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (598, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314051385, 3, '', '', 0, '2025-03-07 10:20:51', '2025-03-07 10:20:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (599, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314061384, 3, '', '', 0, '2025-03-07 10:21:01', '2025-03-07 10:21:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (600, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314071384, 3, '', '', 0, '2025-03-07 10:21:11', '2025-03-07 10:21:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (601, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314081387, 3, '', '', 0, '2025-03-07 10:21:21', '2025-03-07 10:21:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (602, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314091383, 3, '', '', 0, '2025-03-07 10:21:31', '2025-03-07 10:21:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (603, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314101379, 3, '', '', 0, '2025-03-07 10:21:41', '2025-03-07 10:21:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (604, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314111383, 3, '', '', 0, '2025-03-07 10:21:51', '2025-03-07 10:21:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (605, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314121591, 3, '', '', 0, '2025-03-07 10:22:01', '2025-03-07 10:22:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (606, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314131387, 3, '', '', 0, '2025-03-07 10:22:11', '2025-03-07 10:22:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (607, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314141494, 3, '', '', 0, '2025-03-07 10:22:21', '2025-03-07 10:22:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (608, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314151482, 3, '', '', 0, '2025-03-07 10:22:31', '2025-03-07 10:22:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (609, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314161679, 3, '', '', 0, '2025-03-07 10:22:42', '2025-03-07 10:22:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (610, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314171379, 3, '', '', 0, '2025-03-07 10:22:51', '2025-03-07 10:22:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (611, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314181377, 3, '', '', 0, '2025-03-07 10:23:01', '2025-03-07 10:23:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (612, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314191377, 3, '', '', 0, '2025-03-07 10:23:11', '2025-03-07 10:23:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (613, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314201378, 3, '', '', 0, '2025-03-07 10:23:21', '2025-03-07 10:23:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (614, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314211375, 3, '', '', 0, '2025-03-07 10:23:31', '2025-03-07 10:23:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (615, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314221374, 3, '', '', 0, '2025-03-07 10:23:41', '2025-03-07 10:23:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (616, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314231374, 3, '', '', 0, '2025-03-07 10:23:51', '2025-03-07 10:23:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (617, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314241376, 3, '', '', 0, '2025-03-07 10:24:01', '2025-03-07 10:24:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (618, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314251376, 3, '', '', 0, '2025-03-07 10:24:11', '2025-03-07 10:24:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (619, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314261373, 3, '', '', 0, '2025-03-07 10:24:21', '2025-03-07 10:24:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (620, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314271471, 3, '', '', 0, '2025-03-07 10:24:31', '2025-03-07 10:24:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (621, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314281370, 3, '', '', 0, '2025-03-07 10:24:41', '2025-03-07 10:24:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (622, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314291372, 3, '', '', 0, '2025-03-07 10:24:51', '2025-03-07 10:24:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (623, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314301378, 3, '', '', 0, '2025-03-07 10:25:01', '2025-03-07 10:25:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (624, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314311527, 3, '', '', 0, '2025-03-07 10:25:11', '2025-03-07 10:25:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (625, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314321370, 3, '', '', 0, '2025-03-07 10:25:21', '2025-03-07 10:25:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (626, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314331372, 3, '', '', 0, '2025-03-07 10:25:31', '2025-03-07 10:25:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (627, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314341373, 3, '', '', 0, '2025-03-07 10:25:41', '2025-03-07 10:25:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (628, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314351372, 3, '', '', 0, '2025-03-07 10:25:51', '2025-03-07 10:25:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (629, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314361370, 3, '', '', 0, '2025-03-07 10:26:01', '2025-03-07 10:26:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (630, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314371369, 3, '', '', 0, '2025-03-07 10:26:11', '2025-03-07 10:26:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (631, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314381371, 3, '', '', 0, '2025-03-07 10:26:21', '2025-03-07 10:26:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (632, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314391372, 3, '', '', 0, '2025-03-07 10:26:31', '2025-03-07 10:26:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (633, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314401366, 3, '', '', 0, '2025-03-07 10:26:41', '2025-03-07 10:26:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (634, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314411469, 3, '', '', 0, '2025-03-07 10:26:51', '2025-03-07 10:26:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (635, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314421468, 3, '', '', 0, '2025-03-07 10:27:01', '2025-03-07 10:27:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (636, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314431364, 3, '', '', 0, '2025-03-07 10:27:11', '2025-03-07 10:27:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (637, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314441366, 3, '', '', 0, '2025-03-07 10:27:21', '2025-03-07 10:27:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (638, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314451366, 3, '', '', 0, '2025-03-07 10:27:31', '2025-03-07 10:28:13'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (639, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:27:41', '2025-03-07 10:27:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (640, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:27:51', '2025-03-07 10:27:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (641, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:28:01', '2025-03-07 10:28:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (642, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:28:11', '2025-03-07 10:28:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (643, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314501374, 3, '', '', 0, '2025-03-07 10:28:21', '2025-03-07 10:28:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (644, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:28:31', '2025-03-07 10:28:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (645, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:28:41', '2025-03-07 10:28:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (646, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 10:28:51', '2025-03-07 10:28:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (647, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314541377, 3, '', '', 0, '2025-03-07 10:29:01', '2025-03-07 10:29:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (648, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314551364, 3, '', '', 0, '2025-03-07 10:29:11', '2025-03-07 10:29:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (649, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314561377, 3, '', '', 0, '2025-03-07 10:29:21', '2025-03-07 10:29:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (650, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314571361, 3, '', '', 0, '2025-03-07 10:29:31', '2025-03-07 10:30:07'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (651, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:29:41', '2025-03-07 10:29:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (652, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:29:51', '2025-03-07 10:29:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (653, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:30:01', '2025-03-07 10:30:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (654, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314611364, 3, '', '', 0, '2025-03-07 10:30:11', '2025-03-07 10:30:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (655, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314621415, 3, '', '', 0, '2025-03-07 10:30:21', '2025-03-07 10:31:04'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (656, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:30:31', '2025-03-07 10:30:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (657, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:30:41', '2025-03-07 10:30:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (658, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:30:51', '2025-03-07 10:30:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (659, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:31:01', '2025-03-07 10:31:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (660, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314671773, 3, '', '', 0, '2025-03-07 10:31:12', '2025-03-07 10:31:54'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (661, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:31:22', '2025-03-07 10:31:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (662, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:31:31', '2025-03-07 10:31:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (663, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:31:41', '2025-03-07 10:31:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (664, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:31:51', '2025-03-07 10:31:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (665, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 10:32:01', '2025-03-07 10:32:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (666, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 10:32:11', '2025-03-07 10:32:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (667, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314741355, 3, '', '', 0, '2025-03-07 10:32:21', '2025-03-07 10:32:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (668, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314751356, 3, '', '', 0, '2025-03-07 10:32:31', '2025-03-07 10:32:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (669, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314761457, 3, '', '', 0, '2025-03-07 10:32:41', '2025-03-07 10:32:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (670, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314771357, 3, '', '', 0, '2025-03-07 10:32:51', '2025-03-07 10:32:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (671, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314781353, 3, '', '', 0, '2025-03-07 10:33:01', '2025-03-07 10:33:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (672, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314791354, 3, '', '', 0, '2025-03-07 10:33:11', '2025-03-07 10:33:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (673, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314801355, 3, '', '', 0, '2025-03-07 10:33:21', '2025-03-07 10:33:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (674, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314811856, 3, '', '', 0, '2025-03-07 10:33:32', '2025-03-07 10:33:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (675, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314821388, 3, '', '', 0, '2025-03-07 10:33:41', '2025-03-07 10:33:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (676, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314831353, 3, '', '', 0, '2025-03-07 10:33:51', '2025-03-07 10:33:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (677, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314841361, 3, '', '', 0, '2025-03-07 10:34:01', '2025-03-07 10:34:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (678, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314851350, 3, '', '', 0, '2025-03-07 10:34:11', '2025-03-07 10:34:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (679, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314861454, 3, '', '', 0, '2025-03-07 10:34:21', '2025-03-07 10:34:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (680, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314871451, 3, '', '', 0, '2025-03-07 10:34:31', '2025-03-07 10:34:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (681, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314881353, 3, '', '', 0, '2025-03-07 10:34:41', '2025-03-07 10:34:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (682, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314891347, 3, '', '', 0, '2025-03-07 10:34:51', '2025-03-07 10:34:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (683, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314901351, 3, '', '', 0, '2025-03-07 10:35:01', '2025-03-07 10:35:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (684, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314911360, 3, '', '', 0, '2025-03-07 10:35:11', '2025-03-07 10:35:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (685, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314921348, 3, '', '', 0, '2025-03-07 10:35:21', '2025-03-07 10:35:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (686, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314931346, 3, '', '', 0, '2025-03-07 10:35:31', '2025-03-07 10:35:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (687, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741314941416, 3, '', '', 0, '2025-03-07 10:35:41', '2025-03-07 10:36:23'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (688, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:35:52', '2025-03-07 10:35:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (689, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:36:01', '2025-03-07 10:36:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (690, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:36:11', '2025-03-07 10:36:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (691, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:36:21', '2025-03-07 10:36:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (692, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741314991344, 3, '', '', 0, '2025-03-07 10:36:31', '2025-03-07 10:36:53'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (693, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:36:41', '2025-03-07 10:36:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (694, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:36:51', '2025-03-07 10:36:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (695, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315021341, 3, '', '', 0, '2025-03-07 10:37:01', '2025-03-07 10:37:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (696, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315031346, 3, '', '', 0, '2025-03-07 10:37:11', '2025-03-07 10:37:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (697, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315041342, 3, '', '', 0, '2025-03-07 10:37:21', '2025-03-07 10:37:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (698, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315051346, 3, '', '', 0, '2025-03-07 10:37:31', '2025-03-07 10:37:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (699, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315061340, 3, '', '', 0, '2025-03-07 10:37:41', '2025-03-07 10:37:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (700, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315071346, 3, '', '', 0, '2025-03-07 10:37:51', '2025-03-07 10:37:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (701, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315081345, 3, '', '', 0, '2025-03-07 10:38:01', '2025-03-07 10:38:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (702, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315091543, 3, '', '', 0, '2025-03-07 10:38:11', '2025-03-07 10:38:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (703, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315101928, 3, '', '', 0, '2025-03-07 10:38:22', '2025-03-07 10:38:23'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (704, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315111353, 3, '', '', 0, '2025-03-07 10:38:31', '2025-03-07 10:38:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (705, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315121423, 3, '', '', 0, '2025-03-07 10:38:41', '2025-03-07 10:38:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (706, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315131342, 3, '', '', 0, '2025-03-07 10:38:51', '2025-03-07 10:38:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (707, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315141366, 3, '', '', 0, '2025-03-07 10:39:01', '2025-03-07 10:39:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (708, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315151341, 3, '', '', 0, '2025-03-07 10:39:11', '2025-03-07 10:39:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (709, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315161341, 3, '', '', 0, '2025-03-07 10:39:21', '2025-03-07 10:39:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (710, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315171340, 3, '', '', 0, '2025-03-07 10:39:31', '2025-03-07 10:39:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (711, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315181339, 3, '', '', 0, '2025-03-07 10:39:41', '2025-03-07 10:39:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (712, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315191344, 3, '', '', 0, '2025-03-07 10:39:51', '2025-03-07 10:39:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (713, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315201340, 3, '', '', 0, '2025-03-07 10:40:01', '2025-03-07 10:40:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (714, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315211338, 3, '', '', 0, '2025-03-07 10:40:11', '2025-03-07 10:40:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (715, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315221337, 3, '', '', 0, '2025-03-07 10:40:21', '2025-03-07 10:40:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (716, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315231359, 3, '', '', 0, '2025-03-07 10:40:31', '2025-03-07 10:40:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (717, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315241336, 3, '', '', 0, '2025-03-07 10:40:41', '2025-03-07 10:40:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (718, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315251433, 3, '', '', 0, '2025-03-07 10:40:51', '2025-03-07 10:40:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (719, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315261337, 3, '', '', 0, '2025-03-07 10:41:01', '2025-03-07 10:41:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (720, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315271439, 3, '', '', 0, '2025-03-07 10:41:11', '2025-03-07 10:41:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (721, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315281434, 3, '', '', 0, '2025-03-07 10:41:21', '2025-03-07 10:41:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (722, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315291435, 3, '', '', 0, '2025-03-07 10:41:31', '2025-03-07 10:41:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (723, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315301431, 3, '', '', 0, '2025-03-07 10:41:41', '2025-03-07 10:41:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (724, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315311497, 3, '', '', 0, '2025-03-07 10:41:51', '2025-03-07 10:41:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (725, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315321434, 3, '', '', 0, '2025-03-07 10:42:01', '2025-03-07 10:42:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (726, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315331446, 3, '', '', 0, '2025-03-07 10:42:11', '2025-03-07 10:42:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (727, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315341465, 3, '', '', 0, '2025-03-07 10:42:21', '2025-03-07 10:42:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (728, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315351432, 3, '', '', 0, '2025-03-07 10:42:31', '2025-03-07 10:42:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (729, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315361431, 3, '', '', 0, '2025-03-07 10:42:41', '2025-03-07 10:42:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (730, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315371430, 3, '', '', 0, '2025-03-07 10:42:51', '2025-03-07 10:42:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (731, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315381432, 3, '', '', 0, '2025-03-07 10:43:01', '2025-03-07 10:43:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (732, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315391429, 3, '', '', 0, '2025-03-07 10:43:11', '2025-03-07 10:43:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (733, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315401432, 3, '', '', 0, '2025-03-07 10:43:21', '2025-03-07 10:43:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (734, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315411430, 3, '', '', 0, '2025-03-07 10:43:31', '2025-03-07 10:43:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (735, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315421429, 3, '', '', 0, '2025-03-07 10:43:41', '2025-03-07 10:43:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (736, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315431428, 3, '', '', 0, '2025-03-07 10:43:51', '2025-03-07 10:43:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (737, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315441427, 3, '', '', 0, '2025-03-07 10:44:01', '2025-03-07 10:44:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (738, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315451426, 3, '', '', 0, '2025-03-07 10:44:11', '2025-03-07 10:44:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (739, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315461425, 3, '', '', 0, '2025-03-07 10:44:21', '2025-03-07 10:44:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (740, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315471426, 3, '', '', 0, '2025-03-07 10:44:31', '2025-03-07 10:44:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (741, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315481423, 3, '', '', 0, '2025-03-07 10:44:41', '2025-03-07 10:44:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (742, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315491418, 3, '', '', 0, '2025-03-07 10:44:51', '2025-03-07 10:44:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (743, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315501414, 3, '', '', 0, '2025-03-07 10:45:01', '2025-03-07 10:45:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (744, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315511412, 3, '', '', 0, '2025-03-07 10:45:11', '2025-03-07 10:45:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (745, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315521411, 3, '', '', 0, '2025-03-07 10:45:21', '2025-03-07 10:45:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (746, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315531410, 3, '', '', 0, '2025-03-07 10:45:31', '2025-03-07 10:45:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (747, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315541409, 3, '', '', 0, '2025-03-07 10:45:41', '2025-03-07 10:45:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (748, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315551412, 3, '', '', 0, '2025-03-07 10:45:51', '2025-03-07 10:45:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (749, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315561409, 3, '', '', 0, '2025-03-07 10:46:01', '2025-03-07 10:46:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (750, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315571411, 3, '', '', 0, '2025-03-07 10:46:11', '2025-03-07 10:46:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (751, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315581409, 3, '', '', 0, '2025-03-07 10:46:21', '2025-03-07 10:46:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (752, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315591406, 3, '', '', 0, '2025-03-07 10:46:31', '2025-03-07 10:46:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (753, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315601410, 3, '', '', 0, '2025-03-07 10:46:41', '2025-03-07 10:46:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (754, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315611406, 3, '', '', 0, '2025-03-07 10:46:51', '2025-03-07 10:46:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (755, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315621418, 3, '', '', 0, '2025-03-07 10:47:01', '2025-03-07 10:47:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (756, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315631405, 3, '', '', 0, '2025-03-07 10:47:11', '2025-03-07 10:47:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (757, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315641417, 3, '', '', 0, '2025-03-07 10:47:21', '2025-03-07 10:47:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (758, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315651403, 3, '', '', 0, '2025-03-07 10:47:31', '2025-03-07 10:47:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (759, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315661405, 3, '', '', 0, '2025-03-07 10:47:41', '2025-03-07 10:47:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (760, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315671410, 3, '', '', 0, '2025-03-07 10:47:51', '2025-03-07 10:47:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (761, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315681406, 3, '', '', 0, '2025-03-07 10:48:01', '2025-03-07 10:48:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (762, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315691403, 3, '', '', 0, '2025-03-07 10:48:11', '2025-03-07 10:48:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (763, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315701406, 3, '', '', 0, '2025-03-07 10:48:21', '2025-03-07 10:48:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (764, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315711405, 3, '', '', 0, '2025-03-07 10:48:31', '2025-03-07 10:48:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (765, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315721400, 3, '', '', 0, '2025-03-07 10:48:41', '2025-03-07 10:48:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (766, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315731405, 3, '', '', 0, '2025-03-07 10:48:51', '2025-03-07 10:48:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (767, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315741405, 3, '', '', 0, '2025-03-07 10:49:01', '2025-03-07 10:49:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (768, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315751511, 3, '', '', 0, '2025-03-07 10:49:11', '2025-03-07 10:49:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (769, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315761403, 3, '', '', 0, '2025-03-07 10:49:21', '2025-03-07 10:49:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (770, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315771399, 3, '', '', 0, '2025-03-07 10:49:31', '2025-03-07 10:49:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (771, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315781403, 3, '', '', 0, '2025-03-07 10:49:41', '2025-03-07 10:49:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (772, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315791402, 3, '', '', 0, '2025-03-07 10:49:51', '2025-03-07 10:49:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (773, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315801401, 3, '', '', 0, '2025-03-07 10:50:01', '2025-03-07 10:50:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (774, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315811400, 3, '', '', 0, '2025-03-07 10:50:11', '2025-03-07 10:50:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (775, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315821401, 3, '', '', 0, '2025-03-07 10:50:21', '2025-03-07 10:50:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (776, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315831400, 3, '', '', 0, '2025-03-07 10:50:31', '2025-03-07 10:50:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (777, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315841399, 3, '', '', 0, '2025-03-07 10:50:41', '2025-03-07 10:50:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (778, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315851419, 3, '', '', 0, '2025-03-07 10:50:51', '2025-03-07 10:50:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (779, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315861476, 3, '', '', 0, '2025-03-07 10:51:01', '2025-03-07 10:51:03'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (780, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315871427, 3, '', '', 0, '2025-03-07 10:51:11', '2025-03-07 10:51:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (781, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315881397, 3, '', '', 0, '2025-03-07 10:51:21', '2025-03-07 10:51:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (782, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741315891398, 3, '', '', 0, '2025-03-07 10:51:31', '2025-03-07 10:51:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (783, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741315902002, 3, '', '', 0, '2025-03-07 10:51:42', '2025-03-07 10:52:24'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (784, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 10:51:51', '2025-03-07 10:51:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (785, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741328941537, 3, '', '', 0, '2025-03-07 14:29:01', '2025-03-07 14:30:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (786, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:29:11', '2025-03-07 14:29:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (787, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:29:21', '2025-03-07 14:29:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (788, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:29:31', '2025-03-07 14:29:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (789, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:29:41', '2025-03-07 14:29:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (790, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:29:51', '2025-03-07 14:29:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (791, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:30:01', '2025-03-07 14:30:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (792, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329011434, 3, '', '', 0, '2025-03-07 14:30:11', '2025-03-07 14:30:14'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (793, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329021330, 3, '', '', 0, '2025-03-07 14:30:21', '2025-03-07 14:30:36'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (794, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:30:31', '2025-03-07 14:30:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (795, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329041334, 3, '', '', 0, '2025-03-07 14:30:41', '2025-03-07 14:30:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (796, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329051330, 3, '', '', 0, '2025-03-07 14:30:51', '2025-03-07 14:30:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (797, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329061337, 3, '', '', 0, '2025-03-07 14:31:01', '2025-03-07 14:31:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (798, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:31:11', '2025-03-07 14:31:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (799, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:31:21', '2025-03-07 14:31:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (800, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:31:31', '2025-03-07 14:31:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (801, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:31:41', '2025-03-07 14:31:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (802, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329111430, 3, '', '', 0, '2025-03-07 14:31:51', '2025-03-07 14:32:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (803, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:32:01', '2025-03-07 14:32:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (804, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:32:11', '2025-03-07 14:32:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (805, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:32:21', '2025-03-07 14:32:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (806, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:32:31', '2025-03-07 14:32:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (807, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:32:41', '2025-03-07 14:32:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (808, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:32:51', '2025-03-07 14:32:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (809, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:33:01', '2025-03-07 14:33:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (810, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:33:11', '2025-03-07 14:33:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (811, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:33:21', '2025-03-07 14:33:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (812, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741329211334, 3, '', '', 0, '2025-03-07 14:33:31', '2025-03-07 14:33:32'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (813, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741329221334, 3, '', '', 0, '2025-03-07 14:33:41', '2025-03-07 14:34:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (814, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:33:51', '2025-03-07 14:33:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (815, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:34:01', '2025-03-07 14:34:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (816, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:34:11', '2025-03-07 14:34:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (817, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:34:21', '2025-03-07 14:34:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (818, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:34:31', '2025-03-07 14:34:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (819, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:34:42', '2025-03-07 14:34:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (820, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:34:51', '2025-03-07 14:34:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (821, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:35:01', '2025-03-07 14:35:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (822, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:35:11', '2025-03-07 14:35:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (823, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:35:21', '2025-03-07 14:35:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (824, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:35:31', '2025-03-07 14:35:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (825, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329341456, 3, '', '', 0, '2025-03-07 14:35:41', '2025-03-07 14:36:23'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (826, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:35:51', '2025-03-07 14:35:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (827, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:36:01', '2025-03-07 14:36:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (828, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:36:11', '2025-03-07 14:36:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (829, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:36:21', '2025-03-07 14:36:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (830, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741329391338, 3, '', '', 0, '2025-03-07 14:36:31', '2025-03-07 14:37:12'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (831, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:36:41', '2025-03-07 14:36:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (832, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:36:51', '2025-03-07 14:36:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (833, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:37:01', '2025-03-07 14:37:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (834, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 14:37:11', '2025-03-07 14:37:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (835, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:37:21', '2025-03-07 14:37:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (836, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:37:31', '2025-03-07 14:37:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (837, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:37:41', '2025-03-07 14:37:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (838, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:37:51', '2025-03-07 14:37:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (839, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:01', '2025-03-07 14:38:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (840, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:11', '2025-03-07 14:38:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (841, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:21', '2025-03-07 14:38:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (842, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:31', '2025-03-07 14:38:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (843, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:41', '2025-03-07 14:38:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (844, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:38:51', '2025-03-07 14:38:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (845, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:01', '2025-03-07 14:39:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (846, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:11', '2025-03-07 14:39:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (847, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:21', '2025-03-07 14:39:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (848, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:31', '2025-03-07 14:39:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (849, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:41', '2025-03-07 14:39:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (850, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:39:51', '2025-03-07 14:39:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (851, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 14:40:01', '2025-03-07 14:40:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (852, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741331761236, 3, '', '', 0, '2025-03-07 15:16:01', '2025-03-07 15:16:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (853, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741331771236, 3, '', '', 0, '2025-03-07 15:16:11', '2025-03-07 15:16:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (854, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741331781237, 3, '', '', 0, '2025-03-07 15:16:21', '2025-03-07 15:16:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (855, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741331791236, 3, '', '', 0, '2025-03-07 15:16:31', '2025-03-07 15:16:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (856, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741332951167, 3, '', '', 0, '2025-03-07 15:35:51', '2025-03-07 15:35:52'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (857, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741332961166, 3, '', '', 0, '2025-03-07 15:36:01', '2025-03-07 15:36:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (858, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741332971166, 3, '', '', 0, '2025-03-07 15:36:11', '2025-03-07 15:36:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (859, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741332981163, 3, '', '', 0, '2025-03-07 15:36:21', '2025-03-07 15:36:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (860, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741332991165, 3, '', '', 0, '2025-03-07 15:36:31', '2025-03-07 15:36:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (861, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741333001165, 3, '', '', 0, '2025-03-07 15:36:41', '2025-03-07 15:36:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (862, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333071164, 3, '', '', 0, '2025-03-07 15:37:51', '2025-03-07 15:37:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (863, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333091163, 3, '', '', 0, '2025-03-07 15:38:11', '2025-03-07 15:38:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (864, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333101159, 3, '', '', 0, '2025-03-07 15:38:21', '2025-03-07 15:39:17'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (865, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:38:31', '2025-03-07 15:38:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (866, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:38:41', '2025-03-07 15:38:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (867, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:38:51', '2025-03-07 15:38:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (868, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:39:01', '2025-03-07 15:39:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (869, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:39:11', '2025-03-07 15:39:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (870, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333271159, 3, '', '', 0, '2025-03-07 15:41:11', '2025-03-07 15:41:26'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (871, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:41:21', '2025-03-07 15:41:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (872, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333311455, 3, '', '', 0, '2025-03-07 15:41:51', '2025-03-07 15:42:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (873, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:42:01', '2025-03-07 15:42:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (874, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333331261, 3, '', '', 0, '2025-03-07 15:42:11', '2025-03-07 15:42:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (875, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333341154, 3, '', '', 0, '2025-03-07 15:42:21', '2025-03-07 15:42:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (876, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333351158, 3, '', '', 0, '2025-03-07 15:42:31', '2025-03-07 15:43:13'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (877, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:42:41', '2025-03-07 15:42:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (878, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:42:51', '2025-03-07 15:42:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (879, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:43:01', '2025-03-07 15:43:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (880, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:43:11', '2025-03-07 15:43:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (881, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741333511151, 3, '', '', 0, '2025-03-07 15:45:11', '2025-03-07 15:45:50'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (882, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:45:21', '2025-03-07 15:45:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (883, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:45:31', '2025-03-07 15:45:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (884, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:45:41', '2025-03-07 15:45:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (885, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741333551466, 3, '', '', 0, '2025-03-07 15:45:51', '2025-03-07 15:46:33'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (886, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:46:01', '2025-03-07 15:46:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (887, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:46:11', '2025-03-07 15:46:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (888, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:46:21', '2025-03-07 15:46:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (889, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:46:31', '2025-03-07 15:46:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (890, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741333601149, 3, '', '', 0, '2025-03-07 15:46:41', '2025-03-07 15:47:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (891, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:46:51', '2025-03-07 15:46:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (892, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:47:01', '2025-03-07 15:47:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (893, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:47:11', '2025-03-07 15:47:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (894, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:47:21', '2025-03-07 15:47:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (895, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:47:31', '2025-03-07 15:47:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (896, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:47:41', '2025-03-07 15:47:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (897, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:47:51', '2025-03-07 15:47:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (898, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:01', '2025-03-07 15:48:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (899, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:11', '2025-03-07 15:48:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (900, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:21', '2025-03-07 15:48:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (901, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:31', '2025-03-07 15:48:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (902, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:41', '2025-03-07 15:48:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (903, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:48:51', '2025-03-07 15:48:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (904, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:01', '2025-03-07 15:49:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (905, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:11', '2025-03-07 15:49:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (906, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:21', '2025-03-07 15:49:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (907, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:31', '2025-03-07 15:49:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (908, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:41', '2025-03-07 15:49:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (909, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:49:51', '2025-03-07 15:49:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (910, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:01', '2025-03-07 15:50:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (911, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:11', '2025-03-07 15:50:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (912, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:21', '2025-03-07 15:50:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (913, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:31', '2025-03-07 15:50:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (914, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:41', '2025-03-07 15:50:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (915, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:50:51', '2025-03-07 15:50:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (916, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:01', '2025-03-07 15:51:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (917, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:11', '2025-03-07 15:51:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (918, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:21', '2025-03-07 15:51:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (919, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:31', '2025-03-07 15:51:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (920, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:41', '2025-03-07 15:51:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (921, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:51:51', '2025-03-07 15:51:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (922, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:01', '2025-03-07 15:52:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (923, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:11', '2025-03-07 15:52:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (924, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:21', '2025-03-07 15:52:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (925, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:31', '2025-03-07 15:52:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (926, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:41', '2025-03-07 15:52:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (927, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:52:51', '2025-03-07 15:52:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (928, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:01', '2025-03-07 15:53:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (929, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:11', '2025-03-07 15:53:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (930, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:21', '2025-03-07 15:53:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (931, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:31', '2025-03-07 15:53:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (932, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:41', '2025-03-07 15:53:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (933, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:53:51', '2025-03-07 15:53:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (934, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:54:01', '2025-03-07 15:54:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (935, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:54:11', '2025-03-07 15:54:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (936, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:54:21', '2025-03-07 15:54:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (937, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:54:31', '2025-03-07 15:54:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (938, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 15:54:41', '2025-03-07 15:54:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (939, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741334161135, 3, '', '', 0, '2025-03-07 15:56:01', '2025-03-07 15:56:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (940, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:56:11', '2025-03-07 15:56:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (941, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741334221233, 3, '', '', 0, '2025-03-07 15:57:01', '2025-03-07 15:57:16'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (942, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 15:57:11', '2025-03-07 15:57:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (943, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741334241229, 3, '', '', 0, '2025-03-07 15:57:21', '2025-03-07 15:57:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (944, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335101120, 3, '', '', 0, '2025-03-07 16:11:41', '2025-03-07 16:11:41'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (945, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741335261114, 3, '', '', 0, '2025-03-07 16:14:21', '2025-03-07 16:15:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (946, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 16:14:51', '2025-03-07 16:14:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (947, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 4, 0, 3, '', '', 0, '2025-03-07 16:15:21', '2025-03-07 16:15:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (948, 'dev', 'ruoyi_group', 2, 0, 0, 0, 4, 0, 1741335351111, 3, '', '', 0, '2025-03-07 16:15:51', '2025-03-07 16:16:11'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (949, 'dev', 'ruoyi_group', 2, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-03-07 16:16:21', '2025-03-07 16:16:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (950, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335411110, 3, '', '', 0, '2025-03-07 16:16:51', '2025-03-07 16:16:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (951, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335441130, 3, '', '', 0, '2025-03-07 16:17:11', '2025-03-07 16:17:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (952, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335471108, 3, '', '', 0, '2025-03-07 16:17:51', '2025-03-07 16:17:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (953, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335501141, 3, '', '', 0, '2025-03-07 16:18:21', '2025-03-07 16:18:21'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (954, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335531211, 3, '', '', 0, '2025-03-07 16:18:51', '2025-03-07 16:18:51'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (955, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335561219, 3, '', '', 0, '2025-03-07 16:19:21', '2025-03-07 16:19:22'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (956, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741335668922, 3, '', '', 0, '2025-03-07 16:21:09', '2025-03-07 16:21:43'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (957, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741337022011, 3, '', '', 0, '2025-03-07 16:43:42', '2025-03-07 16:43:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (958, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741337141607, 3, '', '', 0, '2025-03-07 16:45:42', '2025-03-07 16:45:42'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (959, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741337221311, 3, '', '', 0, '2025-03-07 16:47:01', '2025-03-07 16:47:01'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (960, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741578226798, 3, '', '', 0, '2025-03-10 11:43:47', '2025-03-10 11:43:48'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (961, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741594284654, 3, '', '', 0, '2025-03-10 16:11:25', '2025-03-10 16:11:25'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (962, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741654514758, 3, '', '', 0, '2025-03-11 08:55:15', '2025-03-11 08:55:15'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (963, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741654657149, 3, '', '', 0, '2025-03-11 08:57:37', '2025-03-11 08:57:37'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (964, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741657144166, 3, '', '', 0, '2025-03-11 09:39:04', '2025-03-11 09:39:04'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (965, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741657283665, 3, '', '', 0, '2025-03-11 09:41:24', '2025-03-11 09:41:24'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (966, 'dev', 'ruoyi_group', 2, 0, 0, 0, 5, 1, 1741657353564, 3, '', '', 0, '2025-03-11 09:42:33', '2025-03-11 09:43:34'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (967, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741657747066, 3, '', '', 0, '2025-03-11 09:49:07', '2025-03-11 09:49:07'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (968, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741741615306, 3, '', '', 0, '2025-03-12 09:06:55', '2025-03-12 09:06:56'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (969, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741742394101, 3, '', '', 0, '2025-03-12 09:19:54', '2025-03-12 09:19:57'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (970, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741747531116, 3, '', '', 0, '2025-03-12 10:45:31', '2025-03-12 10:45:31'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (971, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741747566916, 3, '', '', 0, '2025-03-12 10:46:07', '2025-03-12 10:46:07'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (972, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741749735877, 3, '', '', 0, '2025-03-12 11:22:16', '2025-03-12 11:22:16'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (973, 'dev', 'ruoyi_group', 2, 0, 0, 0, 3, 0, 1741843200180, 3, '', '', 0, '2025-03-13 13:20:00', '2025-03-13 13:20:02'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (974, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365514510, 3, '', '', 0, '2025-03-19 14:25:12', '2025-03-19 14:25:15'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (975, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365524588, 3, '', '', 0, '2025-03-19 14:25:22', '2025-03-19 14:25:25'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (976, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365534514, 3, '', '', 0, '2025-03-19 14:25:32', '2025-03-19 14:25:35'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (977, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365544502, 3, '', '', 0, '2025-03-19 14:25:42', '2025-03-19 14:25:45'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (978, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365554499, 3, '', '', 0, '2025-03-19 14:25:52', '2025-03-19 14:25:55'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (979, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365564650, 3, '', '', 0, '2025-03-19 14:26:02', '2025-03-19 14:26:05'); INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (980, 'dev', 'ruoyi_group', 3, 0, 0, 0, 3, 0, 1742365709794, 3, '', '', 0, '2025-03-19 14:28:30', '2025-03-19 14:28:30'); COMMIT; -- ---------------------------- -- Table structure for sj_namespace -- ---------------------------- DROP TABLE IF EXISTS `sj_namespace`; CREATE TABLE `sj_namespace` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `name` varchar(64) NOT NULL COMMENT '名称', `unique_id` varchar(64) NOT NULL COMMENT '唯一id', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_unique_id` (`unique_id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='命名空间'; -- ---------------------------- -- Records of sj_namespace -- ---------------------------- BEGIN; INSERT INTO `sj_namespace` (`id`, `name`, `unique_id`, `description`, `deleted`, `create_dt`, `update_dt`) VALUES (1, 'Development', 'dev', '', 0, '2025-02-12 13:15:48', '2025-02-12 13:15:48'); INSERT INTO `sj_namespace` (`id`, `name`, `unique_id`, `description`, `deleted`, `create_dt`, `update_dt`) VALUES (2, 'Production', 'prod', '', 0, '2025-02-12 13:15:48', '2025-02-12 13:15:48'); COMMIT; -- ---------------------------- -- Table structure for sj_notify_config -- ---------------------------- DROP TABLE IF EXISTS `sj_notify_config`; CREATE TABLE `sj_notify_config` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `business_id` varchar(64) NOT NULL COMMENT '业务id (job_id或workflow_id或scene_name)', `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 1. 重试任务 2. 重试回调 3、JOB任务 4、WORKFLOW任务', `notify_status` tinyint NOT NULL DEFAULT '0' COMMENT '通知状态 0、未启用 1、启用', `recipient_ids` varchar(128) NOT NULL COMMENT '接收人id列表', `notify_threshold` int NOT NULL DEFAULT '0' COMMENT '通知阈值', `notify_scene` tinyint NOT NULL DEFAULT '0' COMMENT '通知场景', `rate_limiter_status` tinyint NOT NULL DEFAULT '0' COMMENT '限流状态 0、未启用 1、启用', `rate_limiter_threshold` int NOT NULL DEFAULT '0' COMMENT '每秒限流阈值', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`business_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知配置'; -- ---------------------------- -- Records of sj_notify_config -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_notify_recipient -- ---------------------------- DROP TABLE IF EXISTS `sj_notify_recipient`; CREATE TABLE `sj_notify_recipient` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `recipient_name` varchar(64) NOT NULL COMMENT '接收人名称', `notify_type` tinyint NOT NULL DEFAULT '0' COMMENT '通知类型 1、钉钉 2、邮件 3、企业微信 4 飞书 5 webhook', `notify_attribute` varchar(512) NOT NULL COMMENT '配置属性', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_namespace_id` (`namespace_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='告警通知接收人'; -- ---------------------------- -- Records of sj_notify_recipient -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_dead_letter_0 -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_dead_letter_0`; CREATE TABLE `sj_retry_dead_letter_0` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一', `group_name` varchar(64) NOT NULL COMMENT '组名称', `scene_name` varchar(64) NOT NULL COMMENT '场景名称', `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id', `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号', `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称', `args_str` text NOT NULL COMMENT '执行方法参数', `ext_attrs` text NOT NULL COMMENT '扩展字段', `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_namespace_id_group_name_unique_id` (`namespace_id`,`group_name`,`unique_id`), KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`), KEY `idx_idempotent_id` (`idempotent_id`), KEY `idx_biz_no` (`biz_no`), KEY `idx_create_dt` (`create_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='死信队列表'; -- ---------------------------- -- Records of sj_retry_dead_letter_0 -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_scene_config -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_scene_config`; CREATE TABLE `sj_retry_scene_config` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `scene_name` varchar(64) NOT NULL COMMENT '场景名称', `group_name` varchar(64) NOT NULL COMMENT '组名称', `scene_status` tinyint NOT NULL DEFAULT '0' COMMENT '组状态 0、未启用 1、启用', `max_retry_count` int NOT NULL DEFAULT '5' COMMENT '最大重试次数', `back_off` tinyint NOT NULL DEFAULT '1' COMMENT '1、默认等级 2、固定间隔时间 3、CRON 表达式', `trigger_interval` varchar(16) NOT NULL DEFAULT '' COMMENT '间隔时长', `deadline_request` bigint unsigned NOT NULL DEFAULT '60000' COMMENT 'Deadline Request 调用链超时 单位毫秒', `executor_timeout` int unsigned NOT NULL DEFAULT '5' COMMENT '任务执行超时时间,单位秒', `route_key` tinyint NOT NULL DEFAULT '4' COMMENT '路由策略', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='场景配置'; -- ---------------------------- -- Records of sj_retry_scene_config -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_summary -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_summary`; CREATE TABLE `sj_retry_summary` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称', `scene_name` varchar(50) NOT NULL DEFAULT '' COMMENT '场景名称', `trigger_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '统计时间', `running_num` int NOT NULL DEFAULT '0' COMMENT '重试中-日志数量', `finish_num` int NOT NULL DEFAULT '0' COMMENT '重试完成-日志数量', `max_count_num` int NOT NULL DEFAULT '0' COMMENT '重试到达最大次数-日志数量', `suspend_num` int NOT NULL DEFAULT '0' COMMENT '暂停重试-日志数量', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_scene_name_trigger_at` (`namespace_id`,`group_name`,`scene_name`,`trigger_at`) USING BTREE, KEY `idx_trigger_at` (`trigger_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='DashBoard_Retry'; -- ---------------------------- -- Records of sj_retry_summary -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_task_0 -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_task_0`; CREATE TABLE `sj_retry_task_0` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一', `group_name` varchar(64) NOT NULL COMMENT '组名称', `scene_name` varchar(64) NOT NULL COMMENT '场景名称', `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id', `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号', `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称', `args_str` text NOT NULL COMMENT '执行方法参数', `ext_attrs` text NOT NULL COMMENT '扩展字段', `next_trigger_at` datetime NOT NULL COMMENT '下次触发时间', `retry_count` int NOT NULL DEFAULT '0' COMMENT '重试次数', `retry_status` tinyint NOT NULL DEFAULT '0' COMMENT '重试状态 0、重试中 1、成功 2、最大重试次数', `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_name_unique_id` (`namespace_id`,`group_name`,`unique_id`), KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`), KEY `idx_namespace_id_group_name_task_type` (`namespace_id`,`group_name`,`task_type`), KEY `idx_namespace_id_group_name_retry_status` (`namespace_id`,`group_name`,`retry_status`), KEY `idx_idempotent_id` (`idempotent_id`), KEY `idx_biz_no` (`biz_no`), KEY `idx_create_dt` (`create_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务表'; -- ---------------------------- -- Records of sj_retry_task_0 -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_task_log -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_task_log`; CREATE TABLE `sj_retry_task_log` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一', `group_name` varchar(64) NOT NULL COMMENT '组名称', `scene_name` varchar(64) NOT NULL COMMENT '场景名称', `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id', `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号', `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称', `args_str` text NOT NULL COMMENT '执行方法参数', `ext_attrs` text NOT NULL COMMENT '扩展字段', `retry_status` tinyint NOT NULL DEFAULT '0' COMMENT '重试状态 0、重试中 1、成功 2、最大次数', `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`), KEY `idx_retry_status` (`retry_status`), KEY `idx_idempotent_id` (`idempotent_id`), KEY `idx_unique_id` (`unique_id`), KEY `idx_biz_no` (`biz_no`), KEY `idx_create_dt` (`create_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务日志基础信息表'; -- ---------------------------- -- Records of sj_retry_task_log -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_retry_task_log_message -- ---------------------------- DROP TABLE IF EXISTS `sj_retry_task_log_message`; CREATE TABLE `sj_retry_task_log_message` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一', `message` longtext NOT NULL COMMENT '异常信息', `log_num` int NOT NULL DEFAULT '1' COMMENT '日志数量', `real_time` bigint NOT NULL DEFAULT '0' COMMENT '上报时间', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`unique_id`), KEY `idx_create_dt` (`create_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务调度日志信息记录表'; -- ---------------------------- -- Records of sj_retry_task_log_message -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_sequence_alloc -- ---------------------------- DROP TABLE IF EXISTS `sj_sequence_alloc`; CREATE TABLE `sj_sequence_alloc` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称', `max_id` bigint NOT NULL DEFAULT '1' COMMENT '最大id', `step` int NOT NULL DEFAULT '100' COMMENT '步长', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='号段模式序号ID分配表'; -- ---------------------------- -- Records of sj_sequence_alloc -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_server_node -- ---------------------------- DROP TABLE IF EXISTS `sj_server_node`; CREATE TABLE `sj_server_node` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `host_id` varchar(64) NOT NULL COMMENT '主机id', `host_ip` varchar(64) NOT NULL COMMENT '机器ip', `host_port` int NOT NULL COMMENT '机器端口', `expire_at` datetime NOT NULL COMMENT '过期时间', `node_type` tinyint NOT NULL COMMENT '节点类型 1、客户端 2、是服务端', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_host_id_host_ip` (`host_id`,`host_ip`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`), KEY `idx_expire_at_node_type` (`expire_at`,`node_type`) ) ENGINE=InnoDB AUTO_INCREMENT=141 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='服务器节点'; -- ---------------------------- -- Records of sj_server_node -- ---------------------------- BEGIN; INSERT INTO `sj_server_node` (`id`, `namespace_id`, `group_name`, `host_id`, `host_ip`, `host_port`, `expire_at`, `node_type`, `ext_attrs`, `create_dt`, `update_dt`) VALUES (140, 'dev', 'ruoyi_group', '1904795043154132992', '169.254.51.122', 28080, '2025-03-26 17:04:04', 1, NULL, '2025-03-26 15:18:23', '2025-03-26 17:03:34'); COMMIT; -- ---------------------------- -- Table structure for sj_system_user -- ---------------------------- DROP TABLE IF EXISTS `sj_system_user`; CREATE TABLE `sj_system_user` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `username` varchar(64) NOT NULL COMMENT '账号', `password` varchar(128) NOT NULL COMMENT '密码', `role` tinyint NOT NULL DEFAULT '0' COMMENT '角色:1-普通用户、2-管理员', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_username` (`username`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统用户表'; -- ---------------------------- -- Records of sj_system_user -- ---------------------------- BEGIN; INSERT INTO `sj_system_user` (`id`, `username`, `password`, `role`, `create_dt`, `update_dt`) VALUES (1, 'admin', '465c194afb65670f38322df087f0a9bb225cc257e43eb4ac5a0c98ef5b3173ac', 2, '2025-02-12 13:15:48', '2025-02-12 13:15:48'); COMMIT; -- ---------------------------- -- Table structure for sj_system_user_permission -- ---------------------------- DROP TABLE IF EXISTS `sj_system_user_permission`; CREATE TABLE `sj_system_user_permission` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `group_name` varchar(64) NOT NULL COMMENT '组名称', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `system_user_id` bigint NOT NULL COMMENT '系统用户id', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_namespace_id_group_name_system_user_id` (`namespace_id`,`group_name`,`system_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统用户权限表'; -- ---------------------------- -- Records of sj_system_user_permission -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_workflow -- ---------------------------- DROP TABLE IF EXISTS `sj_workflow`; CREATE TABLE `sj_workflow` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `workflow_name` varchar(64) NOT NULL COMMENT '工作流名称', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `workflow_status` tinyint NOT NULL DEFAULT '1' COMMENT '工作流状态 0、关闭、1、开启', `trigger_type` tinyint NOT NULL COMMENT '触发类型 1.CRON 表达式 2. 固定时间', `trigger_interval` varchar(255) NOT NULL COMMENT '间隔时长', `next_trigger_at` bigint NOT NULL COMMENT '下次触发时间', `block_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '阻塞策略 1、丢弃 2、覆盖 3、并行', `executor_timeout` int NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒', `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述', `flow_info` text COMMENT '流程信息', `wf_context` text COMMENT '上下文', `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket', `version` int NOT NULL COMMENT '版本号', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流'; -- ---------------------------- -- Records of sj_workflow -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_workflow_node -- ---------------------------- DROP TABLE IF EXISTS `sj_workflow_node`; CREATE TABLE `sj_workflow_node` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `node_name` varchar(64) NOT NULL COMMENT '节点名称', `group_name` varchar(64) NOT NULL COMMENT '组名称', `job_id` bigint NOT NULL COMMENT '任务信息id', `workflow_id` bigint NOT NULL COMMENT '工作流ID', `node_type` tinyint NOT NULL DEFAULT '1' COMMENT '1、任务节点 2、条件节点', `expression_type` tinyint NOT NULL DEFAULT '0' COMMENT '1、SpEl、2、Aviator 3、QL', `fail_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '失败策略 1、跳过 2、阻塞', `workflow_node_status` tinyint NOT NULL DEFAULT '1' COMMENT '工作流节点状态 0、关闭、1、开启', `priority_level` int NOT NULL DEFAULT '1' COMMENT '优先级', `node_info` text COMMENT '节点信息 ', `version` int NOT NULL COMMENT '版本号', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流节点'; -- ---------------------------- -- Records of sj_workflow_node -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sj_workflow_task_batch -- ---------------------------- DROP TABLE IF EXISTS `sj_workflow_task_batch`; CREATE TABLE `sj_workflow_task_batch` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id', `group_name` varchar(64) NOT NULL COMMENT '组名称', `workflow_id` bigint NOT NULL COMMENT '工作流任务id', `task_batch_status` tinyint NOT NULL DEFAULT '0' COMMENT '任务批次状态 0、失败 1、成功', `operation_reason` tinyint NOT NULL DEFAULT '0' COMMENT '操作原因', `flow_info` text COMMENT '流程信息', `wf_context` text COMMENT '全局上下文', `execution_at` bigint NOT NULL DEFAULT '0' COMMENT '任务执行时间', `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段', `version` int NOT NULL DEFAULT '1' COMMENT '版本号', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除', `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`), KEY `idx_job_id_task_batch_status` (`workflow_id`,`task_batch_status`), KEY `idx_create_dt` (`create_dt`), KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流批次'; -- ---------------------------- -- Records of sj_workflow_task_batch -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for sys_client -- ---------------------------- DROP TABLE IF EXISTS `sys_client`; CREATE TABLE `sys_client` ( `id` bigint NOT NULL COMMENT 'id', `client_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端id', `client_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端key', `client_secret` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端秘钥', `grant_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '授权类型', `device_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备类型', `active_timeout` int DEFAULT '1800' COMMENT 'token活跃超时时间', `timeout` int DEFAULT '604800' COMMENT 'token固定超时', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `config_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数名称', `config_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数键名', `config_value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数键值', `config_type` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `parent_id` bigint DEFAULT '0' COMMENT '父部门id', `ancestors` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '祖级列表', `dept_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称', `dept_category` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门类别编码', `order_num` int DEFAULT '0' COMMENT '显示顺序', `leader` bigint DEFAULT NULL COMMENT '负责人', `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话', `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '部门状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `dict_sort` int DEFAULT '0' COMMENT '字典排序', `dict_label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典标签', `dict_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典键值', `dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型', `css_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '样式属性(其他样式扩展)', `list_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '表格回显样式', `is_default` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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-02-13 15:27:27', 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, 'danger', 'N', 103, 1, '2025-01-05 13:24:46', 1, '2025-02-13 15:33: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 (1875775593254064130, '000000', 3, '报废', '3', 'sys_equ_status', NULL, 'pink', 'N', 103, 1, '2025-01-05 13:25:26', 1, '2025-02-13 15:33:19', 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); 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 (1888852864692760577, '000000', 1, '设备故障', '1', 'repair_req_type', NULL, 'primary', 'N', 103, 1, '2025-02-10 15:29:51', 1, '2025-02-10 16:30:28', 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 (1888852995580211202, '000000', 2, '工具故障', '2', 'repair_req_type', NULL, 'cyan', 'N', 103, 1, '2025-02-10 15:30:22', 1, '2025-02-10 16:30:34', 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 (1888853150668795905, '000000', 3, '其它故障', '3', 'repair_req_type', NULL, 'pink', 'N', 103, 1, '2025-02-10 15:30:59', 1, '2025-02-10 16:30:38', 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 (1888853839524507649, '000000', 1, '一般', '1', 'repair_urgency_level', NULL, 'orange', 'N', 103, 1, '2025-02-10 15:33:43', 1, '2025-02-10 15:33:43', 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 (1888853895698821121, '000000', 2, '紧急', '2', 'repair_urgency_level', NULL, 'danger', 'N', 103, 1, '2025-02-10 15:33:57', 1, '2025-02-10 15:33:57', 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 (1888854928655233026, '000000', 0, '待接单', '0', 'repair_req_status', NULL, 'orange', 'N', 103, 1, '2025-02-10 15:38:03', 1, '2025-02-10 15:38:03', 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 (1888854996997222402, '000000', 2, '维修中', '2', 'repair_req_status', NULL, 'cyan', 'N', 103, 1, '2025-02-10 15:38:19', 1, '2025-02-28 09:29:19', 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 (1888855058393444354, '000000', 3, '已完成', '3', 'repair_req_status', NULL, 'green', 'N', 103, 1, '2025-02-10 15:38:34', 1, '2025-02-28 09:29:14', 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 (1888867365911638017, '000000', 1, '机械故障', '1', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:28', 1, '2025-02-10 16:27:28', 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 (1888867399784837121, '000000', 2, '电气故障', '2', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:36', 1, '2025-02-11 14:27:29', 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 (1888867428549373954, '000000', 3, '其它', '3', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:43', 1, '2025-02-10 16:27:43', 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 (1889917775964397570, '000000', 1, '台', '1', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:25', 1, '2025-02-13 14:02:20', 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 (1889917821376126977, '000000', 2, '套', '2', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:36', 1, '2025-02-13 14:01:36', 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 (1889917865475039234, '000000', 3, '个', '3', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:47', 1, '2025-02-13 14:01:47', 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 (1889917912187002881, '000000', 4, '组', '4', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:58', 1, '2025-02-13 14:01:58', 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 (1889917974040403969, '000000', 5, '面', '5', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:02:13', 1, '2025-02-13 14:02:13', 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 (1889939534335819777, '000000', 4, '闲置', '4', 'sys_equ_status', NULL, 'orange', 'N', 103, 1, '2025-02-13 15:27:53', 1, '2025-02-13 15:31: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 (1889939963207598082, '000000', 5, '新增', '5', 'sys_equ_status', NULL, 'info', 'N', 103, 1, '2025-02-13 15:29:35', 1, '2025-02-13 15:31: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 (1890205043891441665, '000000', 0, '新导入', '0', 'equ_import_status', NULL, 'orange', 'N', 103, 1, '2025-02-14 09:02:55', 1, '2025-02-14 09:02:55', '设备首次导入状态,首次盘点后修改为已确认'); 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 (1890205092255961090, '000000', 1, '已确认', '1', 'equ_import_status', NULL, 'primary', 'N', 103, 1, '2025-02-14 09:03:07', 1, '2025-02-14 09:03:07', 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 (1890264658086821890, '000000', 1, '工具', '1', 'eims_fixture_type', NULL, 'primary', 'N', 103, 1, '2025-02-14 12:59:49', 1, '2025-02-14 12:59:49', 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 (1890264696800247810, '000000', 2, '治具', '2', 'eims_fixture_type', NULL, 'cyan', 'N', 103, 1, '2025-02-14 12:59:58', 1, '2025-02-14 12:59:58', 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 (1890265387820220417, '000000', 0, '正常', '0', 'eims_fixture_status', NULL, 'success', 'N', 103, 1, '2025-02-14 13:02:43', 1, '2025-02-14 13:02:43', 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 (1890265467738488833, '000000', 1, '停用', '1', 'eims_fixture_status', NULL, 'danger', 'N', 103, 1, '2025-02-14 13:03:02', 1, '2025-02-14 13:03:02', 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 (1891660585600139265, '000000', 0, '空闲', '0', 'fixture_borrow_status', NULL, 'green', 'N', 103, 1, '2025-02-18 09:26:44', 1, '2025-02-18 09:26:44', 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 (1891660664356585474, '000000', 1, '借出', '1', 'fixture_borrow_status', NULL, 'primary', 'N', 103, 1, '2025-02-18 09:27:02', 1, '2025-02-18 09:27:02', 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 (1891688804214697985, '000000', 0, '借用中', '0', 'fixture_borrow_record_status', NULL, 'primary', 'N', 103, 1, '2025-02-18 11:18:51', 1, '2025-02-18 11:18:51', 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 (1891688873827561473, '000000', 1, '已归还', '1', 'fixture_borrow_record_status', NULL, 'success', 'N', 103, 1, '2025-02-18 11:19:08', 1, '2025-02-18 11:19:08', 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 (1894280336183865346, '000000', 2, '维修中', '2', 'repair_res_status', NULL, 'cyan', 'N', 103, 1, '2025-02-25 14:56:41', 1, '2025-02-28 09:31:23', 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 (1894280386519707649, '000000', 3, '已完成', '3', 'repair_res_status', NULL, 'success', 'N', 103, 1, '2025-02-25 14:56:53', 1, '2025-02-28 09:30:47', 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 (1894665915427332097, '000000', 1, '新增', '1', 'repair_record_handle', NULL, NULL, 'N', 103, 1, '2025-02-26 16:28:50', 1, '2025-02-26 16:28:50', 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 (1894666030619697154, '000000', 2, '接单', '2', 'repair_record_handle', NULL, NULL, 'N', 103, 1, '2025-02-26 16:29:18', 1, '2025-02-26 16:29:18', 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 (1894666073988800514, '000000', 4, '完成', '4', 'repair_record_handle', NULL, NULL, 'N', 103, 1, '2025-02-26 16:29:28', 1, '2025-02-28 09:52:51', 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 (1895285197303681026, '000000', 1, '已接单', '1', 'repair_req_status', NULL, 'primary', 'N', 103, 1, '2025-02-28 09:29:38', 1, '2025-02-28 09:29:38', 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 (1895285559674769409, '000000', 1, '已接单', '1', 'repair_res_status', NULL, 'primary', 'N', 103, 1, '2025-02-28 09:31:05', 1, '2025-02-28 09:31:14', 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 (1895291085867421698, '000000', 3, '维修', '3', 'repair_record_handle', NULL, NULL, 'N', 103, 1, '2025-02-28 09:53:02', 1, '2025-02-28 09:53:02', 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 (1896799723404763137, '000000', 1, '一般保养', '1', 'eims_maint_type', NULL, 'info', 'N', 103, 1, '2025-03-04 13:47:50', 1, '2025-03-04 13:47:50', 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 (1896799769877651458, '000000', 2, '重点保养', '2', 'eims_maint_type', NULL, 'primary', 'N', 103, 1, '2025-03-04 13:48:01', 1, '2025-03-04 13:48:01', 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 (1896801110133940226, '000000', 1, '天', '1', 'maint_cycle_unit', NULL, NULL, 'N', 103, 1, '2025-03-04 13:53:20', 1, '2025-03-04 13:53:20', 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 (1896801136805519362, '000000', 2, '周', '2', 'maint_cycle_unit', NULL, NULL, 'N', 103, 1, '2025-03-04 13:53:27', 1, '2025-03-04 13:53:27', 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 (1896801165473587201, '000000', 3, '月', '3', 'maint_cycle_unit', NULL, NULL, 'N', 103, 1, '2025-03-04 13:53:33', 1, '2025-03-04 13:53:33', 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 (1896801366535938050, '000000', 4, '季', '4', 'maint_cycle_unit', NULL, NULL, 'N', 103, 1, '2025-03-04 13:54:21', 1, '2025-03-04 13:54:21', 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 (1896801400308473858, '000000', 5, '年', '5', 'maint_cycle_unit', NULL, NULL, 'N', 103, 1, '2025-03-04 13:54:29', 1, '2025-03-04 13:54:29', 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 (1896801914693722113, '000000', 0, '按固定周期', '0', 'maint_time_rule', NULL, NULL, 'N', 103, 1, '2025-03-04 13:56:32', 1, '2025-03-04 13:56:32', 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 (1896801953990156289, '000000', 1, '按上次保养时间', '1', 'maint_time_rule', NULL, NULL, 'N', 103, 1, '2025-03-04 13:56:41', 1, '2025-03-04 13:56:41', 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 (1897210572657197057, '000000', 0, '待保养', '0', 'maint_order_status', NULL, 'orange', 'N', 103, 1, '2025-03-05 17:00:24', 1, '2025-03-05 17:00: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 (1897210624087752706, '000000', 1, '保养中', '1', 'maint_order_status', NULL, 'primary', 'N', 103, 1, '2025-03-05 17:00:36', 1, '2025-03-05 17:01:51', 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 (1897210918280429569, '000000', 2, '待验证', '2', 'maint_order_status', NULL, 'purple', 'N', 103, 1, '2025-03-05 17:01:46', 1, '2025-03-05 17:01: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 (1897211001126322178, '000000', 3, '已完成', '3', 'maint_order_status', NULL, 'success', 'N', 103, 1, '2025-03-05 17:02:06', 1, '2025-03-05 17:02:06', 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 (1898900874165735425, '000000', 0, '未完成', '0', 'eims_orditm_status', NULL, 'orange', 'N', 103, 1, '2025-03-10 08:57:03', 1, '2025-03-10 08:57:03', 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 (1898900918084292610, '000000', 1, '已完成', '1', 'eims_orditm_status', NULL, 'success', 'N', 103, 1, '2025-03-10 08:57:13', 1, '2025-03-10 08:57:13', 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 (1899702958496489473, '000000', 0, '未稽查', '0', 'maint_order_st_status', NULL, 'orange', 'N', 103, 1, '2025-03-12 14:04:15', 1, '2025-03-12 14:04: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 (1899703034669244418, '000000', 1, '已稽查', '1', 'maint_order_st_status', NULL, 'success', 'N', 103, 1, '2025-03-12 14:04:33', 1, '2025-03-12 14:04:33', 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 (1899760460037271553, '000000', 1, '日常点检', '1', 'eims_inspect_type', NULL, 'default', 'N', 103, 1, '2025-03-12 17:52:44', 1, '2025-03-12 17:52:44', 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 (1899760521810980865, '000000', 2, '定期点检', '2', 'eims_inspect_type', NULL, 'primary', 'N', 103, 1, '2025-03-12 17:52:59', 1, '2025-03-12 17:52:59', 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 (1900018883008229378, '000000', 0, '未点检', '0', 'eims_inspect_status', NULL, 'orange', 'N', 103, 1, '2025-03-13 10:59:37', 1, '2025-03-13 10:59:37', 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 (1900018957947858946, '000000', 1, '已点检', '1', 'eims_inspect_status', NULL, 'primary', 'N', 103, 1, '2025-03-13 10:59:55', 1, '2025-03-13 10:59:55', 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 (1900019012901629954, '000000', 2, '待验证', '2', 'eims_inspect_status', NULL, 'purple', 'N', 103, 1, '2025-03-13 11:00:08', 1, '2025-03-13 11:00:08', 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 (1900019057134759937, '000000', 3, '完成', '3', 'eims_inspect_status', NULL, 'success', 'N', 103, 1, '2025-03-13 11:00:19', 1, '2025-03-13 11:00:19', 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 (1900019570437877761, '000000', 1, '正常', '1', 'eims_inspect_result', NULL, 'success', 'N', 103, 1, '2025-03-13 11:02:21', 1, '2025-03-13 11:02:21', 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 (1900019612259282945, '000000', 2, '异常', '2', 'eims_inspect_result', NULL, 'orange', 'N', 103, 1, '2025-03-13 11:02:31', 1, '2025-03-13 11:02:31', 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 (1902168266613055490, '000000', 1, '动力系统', '1', 'eims_equ_part', NULL, NULL, 'N', 103, 1, '2025-03-19 09:20:30', 1, '2025-03-19 09:20:30', 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 (1902168325006155778, '000000', 2, '控制装置', '2', 'eims_equ_part', NULL, NULL, 'N', 103, 1, '2025-03-19 09:20:44', 1, '2025-03-19 09:20:44', 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 (1902168380945588226, '000000', 3, '加工单元', '3', 'eims_equ_part', NULL, NULL, 'N', 103, 1, '2025-03-19 09:20:57', 1, '2025-03-19 09:20:57', 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 (1902168469084692481, '000000', 4, '传输系统', '4', 'eims_equ_part', NULL, NULL, 'N', 103, 1, '2025-03-19 09:21:18', 1, '2025-03-19 09:21:18', 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 (1902169014096748545, '000000', 5, '冷却系统', '5', 'eims_equ_part', NULL, NULL, 'N', 103, 1, '2025-03-19 09:23:28', 1, '2025-03-19 09:23:28', 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 (1902170453409914882, '000000', 1, '自然磨损', '1', 'eims_fault_reason', NULL, NULL, 'N', 103, 1, '2025-03-19 09:29:11', 1, '2025-03-19 09:29:11', 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 (1902170488134557698, '000000', 2, '违规操作', '2', 'eims_fault_reason', NULL, NULL, 'N', 103, 1, '2025-03-19 09:29:20', 1, '2025-03-19 09:29:20', 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 (1902170626315902977, '000000', 3, '配件质量', '3', 'eims_fault_reason', NULL, NULL, 'N', 103, 1, '2025-03-19 09:29:53', 1, '2025-03-19 09:29:53', 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 (1902170723527286786, '000000', 4, '维护保养不到位', '4', 'eims_fault_reason', NULL, NULL, 'N', 103, 1, '2025-03-19 09:30:16', 1, '2025-03-19 09:30:16', 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 (1902170767819137026, '000000', 5, '其它', '5', 'eims_fault_reason', NULL, NULL, 'N', 103, 1, '2025-03-19 09:30:26', 1, '2025-03-19 09:30: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 (1902630327827677185, '000000', 1, '个', '1', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:56:34', 1, '2025-03-20 15:56:34', 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 (1902630550448750594, '000000', 2, '台', '2', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:57:27', 1, '2025-03-20 15:57:27', 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 (1902630591439683585, '000000', 3, '组', '3', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:57:37', 1, '2025-03-20 15:57:37', 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 (1902630618165788673, '000000', 4, '包', '4', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:57:43', 1, '2025-03-20 15:57:43', 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 (1902630722847227905, '000000', 5, '卷', '5', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:58:08', 1, '2025-03-20 15:58:08', 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 (1902630774630105089, '000000', 6, '箱', '6', 'eims_spare_unit', NULL, NULL, 'N', 103, 1, '2025-03-20 15:58:21', 1, '2025-03-20 15:58:21', 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 (1904769864397017089, '000000', 1, '采购入库', '1', 'spare_inout_type', NULL, NULL, 'N', 103, 1, '2025-03-26 13:38:19', 1, '2025-03-26 13:38:19', 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 (1904769910127513602, '000000', 2, '领用出库', '2', 'spare_inout_type', NULL, NULL, 'N', 103, 1, '2025-03-26 13:38:30', 1, '2025-03-26 13:38:30', 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `dict_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典名称', `dict_type` varchar(100) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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); 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 (1888852560219844609, '000000', '报修类型', 'repair_req_type', 103, 1, '2025-02-10 15:28:38', 1, '2025-02-10 15:28:38', 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 (1888853668375932930, '000000', '报修紧急程度', 'repair_urgency_level', 103, 1, '2025-02-10 15:33:02', 1, '2025-02-10 15:33:02', 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 (1888854701164572673, '000000', '报修状态', 'repair_req_status', 103, 1, '2025-02-10 15:37:09', 1, '2025-02-10 15:37:09', 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 (1888867248873779202, '000000', '故障类别', 'repair_fault_type', 103, 1, '2025-02-10 16:27:00', 1, '2025-02-10 16:27:00', 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 (1889917574130294785, '000000', '设备单位', 'eims_equ_unit', 103, 1, '2025-02-13 14:00:37', 1, '2025-02-13 14:00:37', 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 (1890204668207632386, '000000', '设备导入状态', 'equ_import_status', 103, 1, '2025-02-14 09:01:26', 1, '2025-02-14 09:01:26', 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 (1890264549630509057, '000000', '工具(治具)类型', 'eims_fixture_type', 103, 1, '2025-02-14 12:59:23', 1, '2025-02-14 15:38:16', 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 (1890265298657705985, '000000', '工具(治具)状态', 'eims_fixture_status', 103, 1, '2025-02-14 13:02:21', 1, '2025-02-18 11:16:19', '工具(治具)状态'); 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 (1891660505694453762, '000000', '工具借用状态', 'fixture_borrow_status', 103, 1, '2025-02-18 09:26:25', 1, '2025-02-18 11:16:52', '工具(治具)表-工具是否被借用状态'); 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 (1891688592146493442, '000000', '工具借用记录状态', 'fixture_borrow_record_status', 103, 1, '2025-02-18 11:18:01', 1, '2025-02-18 11:18:01', '工具(治具)借用记录表借用记录状态'); 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 (1894280187487399937, '000000', '维修状态', 'repair_res_status', 103, 1, '2025-02-25 14:56:05', 1, '2025-02-25 14:56:05', 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 (1894665850189127681, '000000', '维修记录操作', 'repair_record_handle', 103, 1, '2025-02-26 16:28:35', 1, '2025-02-26 16:28:35', 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 (1896799527937613825, '000000', '保养类型', 'eims_maint_type', 103, 1, '2025-03-04 13:47:03', 1, '2025-03-04 13:52:50', 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 (1896800283470176257, '000000', '保养周期单位', 'maint_cycle_unit', 103, 1, '2025-03-04 13:50:03', 1, '2025-03-04 16:06:14', 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 (1896801626104635393, '000000', '保养时间计算规则', 'maint_time_rule', 103, 1, '2025-03-04 13:55:23', 1, '2025-03-04 13:55:23', 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 (1897210227445006337, '000000', '保养工单状态', 'maint_order_status', 103, 1, '2025-03-05 16:59:01', 1, '2025-03-05 16:59:01', 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 (1898900820071796737, '000000', '保养工单项完成状态', 'eims_orditm_status', 103, 1, '2025-03-10 08:56:50', 1, '2025-03-12 17:50:52', 'eims_maint_orditm表status'); 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 (1899702887738580994, '000000', '保养工单汇总稽查状态', 'maint_order_st_status', 103, 1, '2025-03-12 14:03:58', 1, '2025-03-12 14:03:58', 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 (1899760348066131970, '000000', '点检类型', 'eims_inspect_type', 103, 1, '2025-03-12 17:52:17', 1, '2025-03-12 17:52:17', 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 (1900018701768159233, '000000', '点检状态', 'eims_inspect_status', 103, 1, '2025-03-13 10:58:54', 1, '2025-03-13 10:58:54', 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 (1900019372705804289, '000000', '点检结果', 'eims_inspect_result', 103, 1, '2025-03-13 11:01:34', 1, '2025-03-13 11:01:34', 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 (1902167782636511233, '000000', '设备部位', 'eims_equ_part', 103, 1, '2025-03-19 09:18:35', 1, '2025-03-19 09:18:35', 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 (1902170132595990530, '000000', '故障原因', 'eims_fault_reason', 103, 1, '2025-03-19 09:27:55', 1, '2025-03-19 09:27:55', 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 (1902630155022352386, '000000', '备件单位', 'eims_spare_unit', 103, 1, '2025-03-20 15:55:53', 1, '2025-03-20 15:55:53', 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 (1904769725573943298, '000000', '备件出入库类型', 'spare_inout_type', 103, 1, '2025-03-26 13:37:46', 1, '2025-03-26 13:37:46', 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户账号', `client_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '客户端', `device_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '设备类型', `ipaddr` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录IP地址', `login_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录地点', `browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '浏览器类型', `os` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作系统', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '登录状态(0成功 1失败)', `msg` varchar(255) CHARACTER SET utf8mb4 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'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888089356090753026, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-08 12:55: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 (1888745621189136385, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 08:23: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 (1888782603419222017, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:50: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 (1888782654493261825, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:50: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 (1888782843329216513, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:51: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 (1888782853148082178, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:51: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 (1888783125391966210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:52: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 (1888783149735706626, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-10 10:52:49'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783179951472641, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:52: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 (1888783301024251905, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:53: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 (1888783307789664258, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:53: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 (1888783513264422913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:54:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783530842750977, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-10 10:54: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 (1888783545803833346, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10: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 (1888783811739484162, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:55: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 (1888783826071420929, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:55: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 (1888783900230909953, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:55: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 (1888783960675024898, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:56: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 (1888784098814427138, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:56: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 (1888784103642071042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:56: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 (1888785041958199297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 11:00: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 (1888785064720687105, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 11:00: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 (1888786526255276033, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 11:06: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 (1888786534539026433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 11:06:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888813240716976130, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 12:52: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 (1888835413988958210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 14:20: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 (1889106895420878849, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 08:19:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889150231234048001, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 11:11: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 (1889185670379704322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 13:32: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 (1889210447869870082, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 15:10: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 (1889470489966673921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 08:24: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 (1889503117054836738, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 10:33: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 (1889537072244211714, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 12:48: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 (1889578284867219458, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 15:32: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 (1889582177412018177, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 15:47: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 (1889582236866277377, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 15:48: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 (1889585842629738498, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:02: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 (1889585851626520578, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:02: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 (1889586569976578049, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:05: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 (1889586610174787585, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:05: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 (1889586914152775682, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:06: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 (1889586921929015297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:06: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 (1889587641440890881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:09: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 (1889587716141445121, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:09: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 (1889588175669391361, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:11: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 (1889588260230754306, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:12: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 (1889594804292919298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:38: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 (1889594841718693890, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:38: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 (1889596078883184642, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:43: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 (1889596121618948097, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:43: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 (1889596187243028481, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:43:33'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596203558871042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:43: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 (1889596306352873473, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:44: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 (1889596346337173506, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:44: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 (1889598512795852801, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:52: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 (1889598557645545474, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:52: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 (1889598637492510722, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:53: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 (1889598644996120577, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:53: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 (1889837677932302337, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:43: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 (1889840092932853762, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:52: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 (1889840118975287297, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:52: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 (1889840561323364353, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:54: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 (1889840578159300610, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:54:40'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840708178530305, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:55: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 (1889840789548027905, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:55: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 (1889840938651340802, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56: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 (1889840945332867074, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56: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 (1889841000139837442, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56: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 (1889841041705390082, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56: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 (1889841083115753474, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56:40'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841122571571201, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56: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 (1889841221259350018, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:57: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 (1889841279501455361, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:57: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 (1889841358341787650, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:57: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 (1889841366596177921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:57: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 (1889855963159973890, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 09:55: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 (1889903672810115073, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 13:05: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 (1889940754676957185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 15:32: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 (1889940760993579010, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 15:32: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 (1890194547142414337, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 08: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 (1890262924643893249, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 12:52: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 (1890298392936816641, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 15:13: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 (1891290283476119553, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 08:55: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 (1891305465921269762, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-17 09:55: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 (1891305474435706881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 09:55: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 (1891343528814833666, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 12:26: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 (1891646807076618242, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 08:31: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 (1891653110457024514, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 08:57: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 (1891654808697159681, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 09:03: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 (1891657010505433089, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 09:12: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 (1891672018954022914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 10:12:10'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891710190471671809, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 12:43: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 (1891767711555129345, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 16:32: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 (1892008716166500353, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 08:30: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 (1892028023638331393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:46: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 (1892028051945689089, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:46: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 (1892028754537746434, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:49: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 (1892028761387044866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:49: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 (1892028831222206465, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:50: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 (1892028863543513090, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:50: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 (1892033222524276737, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:07: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 (1892033230589923330, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10: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 (1892033597763489794, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:08: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 (1892033625915658241, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:09: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 (1892037521404858370, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:24: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 (1892037556817367042, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:24: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 (1892037634638483458, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:24: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 (1892037649071083522, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:25: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 (1892072080766930945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 12:41: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 (1892076939117334530, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 13:01:10'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892076952622993410, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 13:01: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 (1892095313738280961, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:14: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 (1892095343052271617, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:14: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 (1892096447580286977, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:18: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 (1892096454446362626, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:18: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 (1892104826310627329, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:51: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 (1892104849970696193, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:52: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 (1892105061086793730, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:52: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 (1892105090073628673, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:53: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 (1892105143861383170, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:53: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 (1892105150752624642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:53:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105637887479810, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:55: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 (1892105680237367298, '000000', 'sunjian', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:55: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 (1892106204139491329, '000000', 'sunjian', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:57: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 (1892106238050439169, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:57: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 (1892107678978412545, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 15:03: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 (1892107686175838209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 15:03: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 (1892371494026981377, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 08:31: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 (1892386090565611522, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 09:29: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 (1892386101328195585, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 09:29:40'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892394454087479298, '000000', 'admin', 'pc', 'pc', '192.168.65.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:02: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 (1892398982866251777, '000000', 'admin', 'pc', 'pc', '192.168.65.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:20: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 (1892399647927676929, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:23: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 (1892408186905669634, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:57: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 (1892432334516236290, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 12:33: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 (1892449290356424705, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:40: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 (1892449312967917569, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:40: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 (1892449928423309313, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:43: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 (1892449935956279297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:43: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 (1892450269072097281, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:44: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 (1892450294191783937, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:44: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 (1892450621532045314, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:46: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 (1892450628934991874, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:46: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 (1892450889753591810, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:47: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 (1892450926420197377, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:47:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451019672158210, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:47: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 (1892451025758093313, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:47: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 (1892451180494356482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:48:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451205525962754, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:48: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 (1892451320986763266, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:48: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 (1892451329178238977, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:48: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 (1892738557552898050, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 08:50: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 (1893826601552715778, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 08:53: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 (1893856470588203009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 10:52: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 (1893867935617523714, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 11:37: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 (1893896786347302913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 13:32: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 (1894196003427201026, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 09:21: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 (1894214024938008577, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 10:33: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 (1894247821658206209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 12:47: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 (1894252199509143553, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-25 13:04: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 (1894252226906337282, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 13:04: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 (1894253549844344834, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-25 13:10: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 (1894253564235001858, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 13:10: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 (1894267168015462402, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 14:04: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 (1894309663485296642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-25 16:53: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 (1894548865181241345, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 08:43: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 (1894587137941032962, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 11:15: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 (1894615832181321729, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 13:09:49'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1894631398209642497, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 14:11: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 (1894631446150537218, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 14:11: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 (1894634985811763201, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 14:25: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 (1894634999954956290, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 14:25: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 (1894635753885278209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 14:28: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 (1894635783828414465, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 14:29: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 (1894635910072770562, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 14:29: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 (1894635917161144322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 14:29: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 (1894636757213126657, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 14:32: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 (1894636784216055810, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 14:33: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 (1894644738617122817, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:04: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 (1894649039884369921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15:21: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 (1894649069890420738, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:21: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 (1894649716115128321, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15: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 (1894649724843474946, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:24: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 (1894649797895667713, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15:24: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 (1894649848583831554, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:24: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 (1894650266214875138, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15:26: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 (1894650274066612226, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15: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 (1894650532234412033, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15:27: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 (1894650569727295489, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:27: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 (1894650678439460865, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-26 15:28: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 (1894650687343968257, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:28: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 (1894658518491209729, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-26 15:59: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 (1894909983935905794, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 08:38: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 (1894910967705714690, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 08:42: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 (1894910992473079810, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 08:42: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 (1894911790607187969, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 08:45: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 (1894911797896888321, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 08:45: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 (1894979681281101825, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 13:15: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 (1894993801917165570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14:11: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 (1895004030620897282, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 14:52: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 (1895004067363000321, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14:52: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 (1895004213119258626, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 14:53: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 (1895004480866848769, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14:54:10'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1895004531324325889, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 14:54: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 (1895004540082032642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14: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 (1895004800573476865, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 14:55: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 (1895004840167706625, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14:55: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 (1895004912733360130, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 14:55: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 (1895004946648502274, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-27 14:56: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 (1895004963115339777, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 14: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 (1895020039817891841, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-27 15:56: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 (1895020052325306369, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 15:56: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 (1895049157519314946, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-27 17: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 (1895278641250013185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 09:03: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 (1895307114181996545, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-28 10:56: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 (1895307144347430914, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 10:56: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 (1895313901597667329, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-28 11:23: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 (1895313913111031809, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 11:23: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 (1895335542033657857, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 12:49: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 (1895349646127443970, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-28 13:45: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 (1895349682823409665, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 13:45: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 (1895350036680060929, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-28 13:47: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 (1895350045215469570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 13:47: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 (1895351528539467778, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-28 13:53: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 (1895351656922918914, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 13:53: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 (1895361471980154881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 14:32: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 (1895385323129585665, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-28 16:07: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 (1896366739104456706, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-03 09: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 (1896384576938291202, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-03 10:18: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 (1896423932382130177, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-03 12:54: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 (1896726330525913089, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 08:56: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 (1896736719980498945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 09:37: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 (1896749785845633025, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 10:29: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 (1896799109257994242, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 13:45: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 (1896822372851904513, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 15:17: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 (1896824288294072321, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-04 15:25: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 (1897083255310118914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-05 08:34: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 (1897104937663934466, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-05 10:00: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 (1897151334727614466, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-05 13:05: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 (1897198191960981506, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-05 16:11: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 (1897209738145890305, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-05 16:57: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 (1897441588168687618, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 08:18: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 (1897449579412520962, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 08:50: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 (1897466113782513665, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 09:55:49'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1897485301469261825, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 11:12: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 (1897520317813796865, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 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 (1897530164109737986, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 14:10: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 (1897563547913236481, '000000', 'liliangting', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-03-06 16:22: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 (1897563627546292226, '000000', 'liliangting', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '退出成功', '2025-03-06 16:23: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 (1897563659137789954, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-03-06 16:23: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 (1897564310257348610, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-03-06 16:26: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 (1897581651934392322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-06 17:34: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 (1897809885515034625, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 08:41: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 (1897828405066375169, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 09: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 (1897839248490950658, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 10:38: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 (1897896985677533185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 14:27: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 (1897909461680975874, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 15:17: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 (1897921449924599809, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-07 16:05:10'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1898893597669052418, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-10 08:28: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 (1898959954498486273, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-10 12:51:49'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1899040707940958209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-10 18:12: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 (1899260973657661441, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 08:47: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 (1899271320842051585, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 09:29: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 (1899286789795901442, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 10:30: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 (1899322107072598018, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-03-11 12:50: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 (1899322113716375553, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 12:50: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 (1899349328382382081, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 14:39: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 (1899383625591156738, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-11 16:55: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 (1899620766810386433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-12 08:37: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 (1899652685157736450, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-03-12 10:44: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 (1899652692044783618, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-12 10:44: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 (1899687575970455553, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-12 13:03: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 (1899735933940658177, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-12 16:15: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 (1899759840052031490, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-12 17:50:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1899985217337212929, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-13 08:45: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 (1899997778847559682, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-13 09:35: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 (1900045392137777154, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-13 12:44: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 (1900351798131060738, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-14 09:02: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 (1900409743675813889, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-14 12:52: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 (1900465237421563905, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-14 16:33:16'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1901444789018935297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-17 09:25: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 (1901466941751406594, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-17 10:53: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 (1901495878741164033, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-17 12:48:40'); INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1901550280529190914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-17 16:24: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 (1901800872472256513, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 09:00: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 (1901821484683010050, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 10:22: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 (1901862804478795777, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 13:06: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 (1901882404100677634, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 14:24: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 (1901893460718034945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 15:08: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 (1901919548563382273, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-18 16:52: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 (1902159155179675649, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-19 08:44: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 (1902167480579514369, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-19 09:17: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 (1902185975919296513, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-19 10:30: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 (1902223808096780289, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-19 13:01: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 (1902271971012460545, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-19 16:12: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 (1902290524734308354, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'MSEdge', 'Windows 10 or Windows Server 2016', '0', '登录成功', '2025-03-19 17:26: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 (1902309096244199425, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'MSEdge', 'Windows 10 or Windows Server 2016', '0', '登录成功', '2025-03-19 18:40: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 (1902535836220604417, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-20 09:41: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 (1902554298597617665, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-20 10: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 (1902586547699191809, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-20 13:02: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 (1902618235733131266, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-20 15:08: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 (1902629023130697730, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-20 15:51: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 (1902887455112937474, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-21 08:58: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 (1902910147350347778, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-21 10:28: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 (1902944449161072641, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-21 12:44: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 (1902967063824842754, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-21 14:14: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 (1902980929015267330, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-21 15:09: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 (1903975577170599937, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-24 09:02: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 (1904705873998065666, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-26 09:24: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 (1904755917044371457, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-26 12:42: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 (1904768958620291073, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-03-26 13:34: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 (1909399808386138113, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-04-08 08:16: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 (1909399808847511554, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-04-08 08:16:04'); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称', `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID', `order_num` int DEFAULT '0' COMMENT '显示顺序', `path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '路由地址', `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '组件路径', `query_param` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)', `visible` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '显示状态(0显示 1隐藏)', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0正常 1停用)', `perms` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '权限标识', `icon` varchar(100) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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, 'tabler:category-plus', 103, 1, '2025-01-06 09:11:19', 1, '2025-02-10 13:20:29', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `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', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888814115854311426, '设备维修', 0, 3, 'repair', '', NULL, 1, 0, 'M', '0', '0', NULL, 'lucide:book-open-text', 103, 1, '2025-02-10 12:55:52', 1, '2025-02-14 13:07: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 (1888837193552453634, '故障报修', 1888814115854311426, 1, 'repairReq', 'eims/repair-req/index', NULL, 1, 0, 'C', '0', '0', 'eims:repairReq:list', '#', 103, 1, '2025-02-10 14:28:06', 1, '2025-02-10 14:54:39', '故障报修菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453635, '故障报修查询', 1888837193552453634, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:query', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453636, '故障报修新增', 1888837193552453634, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:add', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453637, '故障报修修改', 1888837193552453634, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:edit', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453638, '故障报修删除', 1888837193552453634, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:remove', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453639, '故障报修导出', 1888837193552453634, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:export', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889589456286871554, '用户列表', 100, 0, '', '', NULL, 1, 0, 'F', '0', '0', 'system:user:list', '#', 103, 1, '2025-02-12 16:16:48', 1, '2025-02-12 16:16:48', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889865233922322434, '【设备台账】导入', 1875349550770728962, 6, '', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:import', '#', 103, 1, '2025-02-13 10:32:38', 1, '2025-02-13 10:32:51', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865858, '工具台账', 1890266675786121217, 2, 'index', 'eims/fixture/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixture:list', '#', 103, 1, '2025-02-14 13:06:23', 1, '2025-02-18 13:47: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 (1890265974959865859, '工具(治具)台账查询', 1890265974959865858, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:query', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865860, '工具(治具)台账新增', 1890265974959865858, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:add', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865861, '工具(治具)台账修改', 1890265974959865858, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:edit', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865862, '工具(治具)台账删除', 1890265974959865858, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:remove', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865863, '工具(治具)台账导出', 1890265974959865858, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:export', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890266675786121217, '工具管理', 0, 2, 'fixtrue', '', NULL, 1, 0, 'M', '0', '0', NULL, 'carbon:model-alt', 103, 1, '2025-02-14 13:07:50', 1, '2025-02-14 13:08:39', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477762, '工具类型', 1890266675786121217, 3, 'fixtureType', 'eims/fixture-type/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixtureType:list', '#', 103, 1, '2025-02-17 10:57:12', 1, '2025-02-18 13:47:57', '工具类型菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477763, '工具类型查询', 1891320717983477762, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:query', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477764, '工具类型新增', 1891320717983477762, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:add', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477765, '工具类型修改', 1891320717983477762, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:edit', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477766, '工具类型删除', 1891320717983477762, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:remove', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477767, '工具类型导出', 1891320717983477762, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:export', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891410873344151554, '概览', 1890266675786121217, 1, 'dashboard', 'eims/fixture/dashboard/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixture:list', '#', 103, 1, '2025-02-17 16:54:28', 1, '2025-02-18 13:47:48', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327234, '借用记录', 1890266675786121217, 4, 'fixtureBorrow', 'eims/fixture-borrow/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixtureBorrow:list', '#', 103, 1, '2025-02-18 13:09:34', 1, '2025-02-19 09:44:36', '工具借用菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327235, '工具借用查询', 1891716266575327234, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:query', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327236, '工具借用新增', 1891716266575327234, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:add', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327237, '工具借用修改', 1891716266575327234, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:edit', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327238, '工具借用删除', 1891716266575327234, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:remove', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327239, '工具借用导出', 1891716266575327234, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:export', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892046376327188482, '工具借用', 1890265974959865858, 6, '', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:borrow', '#', 103, 1, '2025-02-19 10:59:43', 1, '2025-02-19 10:59: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 (1894280983377555458, '维修工单', 1888814115854311426, 2, 'repairRes', 'eims/repair-res/index', NULL, 1, 0, 'C', '0', '0', 'eims:repairRes:list', '#', 103, 1, '2025-02-25 14:59:45', 1, '2025-02-28 13:52:25', '维修工单菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894280983377555459, '维修工单查询', 1894280983377555458, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRes:query', '#', 103, 1, '2025-02-25 14:59:45', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894280983377555460, '维修工单新增', 1894280983377555458, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRes:add', '#', 103, 1, '2025-02-25 14:59:45', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894280983377555461, '维修工单修改', 1894280983377555458, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRes:edit', '#', 103, 1, '2025-02-25 14:59:45', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894280983377555462, '维修工单删除', 1894280983377555458, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRes:remove', '#', 103, 1, '2025-02-25 14:59:45', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894280983377555463, '维修工单导出', 1894280983377555458, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRes:export', '#', 103, 1, '2025-02-25 14:59:45', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894662033104052225, '维修记录', 1888814115854311426, 3, 'repairRecord', 'eims/repair-record/index', NULL, 1, 0, 'C', '1', '0', 'eims:repairRecord:list', '#', 103, 1, '2025-02-28 13:51:59', 1, '2025-02-28 13:52: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 (1894662033104052226, '维修记录查询', 1894662033104052225, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRecord:query', '#', 103, 1, '2025-02-28 13:51:59', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894662033104052227, '维修记录新增', 1894662033104052225, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRecord:add', '#', 103, 1, '2025-02-28 13:51:59', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894662033104052228, '维修记录修改', 1894662033104052225, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRecord:edit', '#', 103, 1, '2025-02-28 13:51:59', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894662033104052229, '维修记录删除', 1894662033104052225, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRecord:remove', '#', 103, 1, '2025-02-28 13:51:59', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894662033104052230, '维修记录导出', 1894662033104052225, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairRecord:export', '#', 103, 1, '2025-02-28 13:51:59', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1894912845009076225, '派工', 1888837193552453634, 6, '', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:sned', '#', 103, 1, '2025-02-27 08:50:03', 1, '2025-02-27 08:50:03', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895366080371011586, '维修评价', 1888814115854311426, 4, 'repairFb', 'eims/repair-fb/index', NULL, 1, 0, 'C', '0', '0', 'eims:repairFb:list', '#', 103, 1, '2025-02-28 14:51:32', 1, '2025-02-28 15:17: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 (1895366080371011587, '维修评价查询', 1895366080371011586, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairFb:query', '#', 103, 1, '2025-02-28 14:51:32', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895366080371011588, '维修评价新增', 1895366080371011586, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairFb:add', '#', 103, 1, '2025-02-28 14:51:32', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895366080371011589, '维修评价修改', 1895366080371011586, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairFb:edit', '#', 103, 1, '2025-02-28 14:51:32', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895366080371011590, '维修评价删除', 1895366080371011586, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairFb:remove', '#', 103, 1, '2025-02-28 14:51:32', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1895366080371011591, '维修评价导出', 1895366080371011586, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairFb:export', '#', 103, 1, '2025-02-28 14:51:32', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896751542185267202, '设备保养', 0, 4, 'maint', '', NULL, 1, 0, 'M', '0', '0', NULL, '#', 103, 1, '2025-03-04 10:36:22', 1, '2025-03-04 10:36:22', ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896803187283304450, '保养计划', 1896751542185267202, 2, 'plan', 'eims/maint-plan/index', NULL, 1, 0, 'C', '0', '0', 'eims:maintPlan:list', '#', 103, 1, '2025-03-04 14:08:20', 1, '2025-03-04 14:08: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 (1896803187283304451, '保养计划查询', 1896803187283304450, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintPlan:query', '#', 103, 1, '2025-03-04 14:08:21', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896803187283304452, '保养计划新增', 1896803187283304450, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintPlan:add', '#', 103, 1, '2025-03-04 14:08:21', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896803187283304453, '保养计划修改', 1896803187283304450, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintPlan:edit', '#', 103, 1, '2025-03-04 14:08:21', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896803187283304454, '保养计划删除', 1896803187283304450, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintPlan:remove', '#', 103, 1, '2025-03-04 14:08:21', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1896803187283304455, '保养计划导出', 1896803187283304450, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintPlan:export', '#', 103, 1, '2025-03-04 14:08:21', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736449, '工单明细', 1896751542185267202, 1, 'order', 'eims/maint-order/index', NULL, 1, 0, 'C', '0', '0', 'eims:maintOrder:list', '#', 103, 1, '2025-03-06 09:09:18', 1, '2025-03-11 11:23:56', '保养工单菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736450, '保养工单查询', 1897452547813736449, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrder:query', '#', 103, 1, '2025-03-06 09:09:18', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736451, '保养工单新增', 1897452547813736449, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrder:add', '#', 103, 1, '2025-03-06 09:09:18', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736452, '保养工单修改', 1897452547813736449, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrder:edit', '#', 103, 1, '2025-03-06 09:09:18', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736453, '保养工单删除', 1897452547813736449, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrder:remove', '#', 103, 1, '2025-03-06 09:09:18', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1897452547813736454, '保养工单导出', 1897452547813736449, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrder:export', '#', 103, 1, '2025-03-06 09:09:18', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343746, '工单汇总', 1896751542185267202, 0, 'st', 'eims/maint-st/index', NULL, 1, 0, 'C', '0', '0', 'eims:maintOrderSt:list', '#', 103, 1, '2025-03-12 09:46:31', 1, '2025-03-14 11:33:46', '保养工单汇总菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343747, '保养工单汇总查询', 1899637894045343746, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrderSt:query', '#', 103, 1, '2025-03-12 09:46:31', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343748, '保养工单汇总新增', 1899637894045343746, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrderSt:add', '#', 103, 1, '2025-03-12 09:46:31', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343749, '保养工单汇总修改', 1899637894045343746, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrderSt:edit', '#', 103, 1, '2025-03-12 09:46:31', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343750, '保养工单汇总删除', 1899637894045343746, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrderSt:remove', '#', 103, 1, '2025-03-12 09:46:31', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899637894045343751, '保养工单汇总导出', 1899637894045343746, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:maintOrderSt:export', '#', 103, 1, '2025-03-12 09:46:31', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745819223568385, '设备点检', 0, 5, 'inspect', '', NULL, 1, 0, 'M', '0', '0', NULL, '#', 103, 1, '2025-03-12 16:54:34', 1, '2025-03-12 16:55: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 (1899745958994554881, '点检计划', 1899745819223568385, 3, 'plan', 'eims/insp-plan/index', NULL, 1, 0, 'C', '0', '0', 'eims:inspectPlan:list', '#', 103, 1, '2025-03-12 16:55:34', 1, '2025-03-14 10:05:33', '点检计划菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745958994554882, '点检计划查询', 1899745958994554881, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectPlan:query', '#', 103, 1, '2025-03-12 16:55:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745958994554883, '点检计划新增', 1899745958994554881, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectPlan:add', '#', 103, 1, '2025-03-12 16:55:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745958994554884, '点检计划修改', 1899745958994554881, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectPlan:edit', '#', 103, 1, '2025-03-12 16:55:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745958994554885, '点检计划删除', 1899745958994554881, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectPlan:remove', '#', 103, 1, '2025-03-12 16:55:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1899745958994554886, '点检计划导出', 1899745958994554881, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectPlan:export', '#', 103, 1, '2025-03-12 16:55:34', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240002, '点检记录', 1899745819223568385, 2, 'record', 'eims/insp-record/index', NULL, 1, 0, 'C', '0', '0', 'eims:inspectRecord:list', '#', 103, 1, '2025-03-13 11:20:27', 1, '2025-03-14 10:05:21', '点检记录菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240003, '点检记录查询', 1900020518602240002, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectRecord:query', '#', 103, 1, '2025-03-13 11:20:27', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240004, '点检记录新增', 1900020518602240002, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectRecord:add', '#', 103, 1, '2025-03-13 11:20:27', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240005, '点检记录修改', 1900020518602240002, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectRecord:edit', '#', 103, 1, '2025-03-13 11:20:27', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240006, '点检记录删除', 1900020518602240002, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectRecord:remove', '#', 103, 1, '2025-03-13 11:20:27', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900020518602240007, '点检记录导出', 1900020518602240002, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectRecord:export', '#', 103, 1, '2025-03-13 11:20:27', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213378, '点检汇总', 1899745819223568385, 1, 'st', 'eims/insp-st/index', NULL, 1, 0, 'C', '0', '0', 'eims:inspectSt:list', '#', 103, 1, '2025-03-14 10:04:23', 1, '2025-03-14 11:34:01', '点检汇总菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213379, '点检汇总查询', 1900366559082213378, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectSt:query', '#', 103, 1, '2025-03-14 10:04:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213380, '点检汇总新增', 1900366559082213378, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectSt:add', '#', 103, 1, '2025-03-14 10:04:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213381, '点检汇总修改', 1900366559082213378, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectSt:edit', '#', 103, 1, '2025-03-14 10:04:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213382, '点检汇总删除', 1900366559082213378, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectSt:remove', '#', 103, 1, '2025-03-14 10:04:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1900366559082213383, '点检汇总导出', 1900366559082213378, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inspectSt:export', '#', 103, 1, '2025-03-14 10:04:23', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100161, '故障知识', 0, 6, 'faultKnow', 'eims/fault-know/index', NULL, 1, 0, 'C', '0', '0', 'eims:faultKnow:list', '#', 103, 1, '2025-03-18 14:38:07', 1, '2025-03-18 15:12:15', '故障知识菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100162, '故障知识查询', 1901884417291100161, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:faultKnow:query', '#', 103, 1, '2025-03-18 14:38:07', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100163, '故障知识新增', 1901884417291100161, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:faultKnow:add', '#', 103, 1, '2025-03-18 14:38:07', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100164, '故障知识修改', 1901884417291100161, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:faultKnow:edit', '#', 103, 1, '2025-03-18 14:38:07', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100165, '故障知识删除', 1901884417291100161, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:faultKnow:remove', '#', 103, 1, '2025-03-18 14:38:07', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1901884417291100166, '故障知识导出', 1901884417291100161, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:faultKnow:export', '#', 103, 1, '2025-03-18 14:38:07', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600409488035841, '备品仓库', 0, 7, 'spare', '', NULL, 1, 0, 'M', '0', '0', NULL, '#', 103, 1, '2025-03-20 13:57:41', 1, '2025-03-20 13:57: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 (1902600680171638785, '备件类型', 1902600409488035841, 10, 'spareType', 'eims/spare-type/index', NULL, 1, 0, 'C', '0', '0', 'eims:spareType:list', '#', 103, 1, '2025-03-20 13:59:28', 1, '2025-03-20 14:00:15', '备件类型菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600680171638786, '备件类型查询', 1902600680171638785, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareType:query', '#', 103, 1, '2025-03-20 13:59:28', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600680171638787, '备件类型新增', 1902600680171638785, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareType:add', '#', 103, 1, '2025-03-20 13:59:28', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600680171638788, '备件类型修改', 1902600680171638785, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareType:edit', '#', 103, 1, '2025-03-20 13:59:28', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600680171638789, '备件类型删除', 1902600680171638785, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareType:remove', '#', 103, 1, '2025-03-20 13:59:28', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902600680171638790, '备件类型导出', 1902600680171638785, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareType:export', '#', 103, 1, '2025-03-20 13:59:28', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430082, '备件台账', 1902600409488035841, 1, 'index', 'eims/spare/index', NULL, 1, 0, 'C', '0', '0', 'eims:spare:list', '#', 103, 1, '2025-03-20 16:04:19', 1, '2025-03-26 11:06:45', '备件台账菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430083, '备件台账查询', 1902631921344430082, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spare:query', '#', 103, 1, '2025-03-20 16:04:19', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430084, '备件台账新增', 1902631921344430082, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spare:add', '#', 103, 1, '2025-03-20 16:04:19', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430085, '备件台账修改', 1902631921344430082, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spare:edit', '#', 103, 1, '2025-03-20 16:04:19', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430086, '备件台账删除', 1902631921344430082, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spare:remove', '#', 103, 1, '2025-03-20 16:04:19', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1902631921344430087, '备件台账导出', 1902631921344430082, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spare:export', '#', 103, 1, '2025-03-20 16:04:19', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280449, '出库单', 1902600409488035841, 2, 'out', 'eims/spare-out/index', NULL, 1, 0, 'C', '0', '0', 'eims:spareInout:list', '#', 103, 1, '2025-03-26 14:26:26', 1, '2025-03-26 15:45:54', '备件出入库菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280450, '备件出入库查询', 1904781347730280449, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:query', '#', 103, 1, '2025-03-26 14:26:26', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280451, '备件出入库新增', 1904781347730280449, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:add', '#', 103, 1, '2025-03-26 14:26:26', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280452, '备件出入库修改', 1904781347730280449, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:edit', '#', 103, 1, '2025-03-26 14:26:26', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280453, '备件出入库删除', 1904781347730280449, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:remove', '#', 103, 1, '2025-03-26 14:26:26', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730280454, '备件出入库导出', 1904781347730280449, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:export', '#', 103, 1, '2025-03-26 14:26:26', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281234, '入库单', 1902600409488035841, 3, 'in', 'eims/spare-in/index', NULL, 1, 0, 'C', '0', '0', 'eims:spareInout:list', '#', 103, 1, '2025-03-26 16:29:02', 1, '2025-03-26 16:29:46', '备件出入库菜单'); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281241, '备件出入库查询', 1904781347730281234, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:query', '#', 103, 1, '2025-03-26 16:29:02', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281242, '备件出入库新增', 1904781347730281234, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:add', '#', 103, 1, '2025-03-26 16:29:02', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281243, '备件出入库修改', 1904781347730281234, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:edit', '#', 103, 1, '2025-03-26 16:29:02', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281244, '备件出入库删除', 1904781347730281234, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:remove', '#', 103, 1, '2025-03-26 16:29:02', NULL, NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1904781347730281245, '备件出入库导出', 1904781347730281234, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:spareInout:export', '#', 103, 1, '2025-03-26 16:29:02', NULL, NULL, ''); COMMIT; -- ---------------------------- -- Table structure for sys_notice -- ---------------------------- DROP TABLE IF EXISTS `sys_notice`; CREATE TABLE `sys_notice` ( `notice_id` bigint NOT NULL COMMENT '公告ID', `tenant_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `notice_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告标题', `notice_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告类型(1通知 2公告)', `notice_content` longblob 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(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '模块标题', `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)', `method` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '方法名称', `request_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求方式', `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)', `oper_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作人员', `dept_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称', `oper_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求URL', `oper_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '主机地址', `oper_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作地点', `oper_param` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求参数', `json_result` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '返回参数', `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)', `error_msg` varchar(2000) CHARACTER SET utf8mb4 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); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888122712764301313, '000000', '盘点明细', 5, 'org.dromara.eims.controller.EimsInventoryDetailController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inventoryDetail/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"inventoryId\":null,\"equId\":null,\"status\":null,\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '', 0, '', '2025-02-08 15:08:29', 1483); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888150196301959170, '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\":\"1888150196071272449\",\"inventoryCode\":\"PD2222\",\"inventoryName\":\"盘点2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-08\",\"endDate\":\"2025-02-08\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-08 16:57:42', 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 (1888773937430368258, '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\":\"1888773937203875842\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"1\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10: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 (1888773961228849154, '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\":\"1888773961174323201\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"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\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:16: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 (1888775058441998338, '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-10 10:20:40', 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 (1888775073751207937, '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-10 10:20:44', 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 (1888779579028242433, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1887748053410902017\",\"inventoryId\":\"1887748053364764673\",\"equId\":\"1875827537628749825\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:38:38', 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 (1888779801259245569, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1887748053410902017\",\"inventoryId\":\"1887748053364764673\",\"equId\":\"1875827537628749825\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:39:31', 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 (1888779963448786946, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053410902017', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:40:10', 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 (1888782469377654786, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1888782469222465537\",\"deptId\":100,\"userName\":\"zhuguifei\",\"nickName\":\"zhuguifei\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[4],\"postIds\":[4],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:50:07', 124); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888782576579870722, '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\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:50:33', 60); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888782714530529282, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'zhuguifei', 'XXX科技', '/eims/inventory/1888150196071272449', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:51:06', 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 (1888783017665462274, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":\"1888782469222465537\",\"roleId\":4}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52:18', 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 (1888783073160298498, '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\":3,\"roleName\":\"本部门及以下\",\"roleKey\":\"test1\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,1500,1506,5,\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52:31', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783105791983618, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"3\",\"userIds\":\"1888782469222465537\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52: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 (1888783481597427713, '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\":\"1888782469222465537\",\"deptId\":101,\"userName\":\"zhuguifei\",\"nickName\":\"zhuguifei\",\"userType\":null,\"email\":\"\",\"phonenumber\":\"\",\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[3],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:54:09', 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 (1888783877048991745, '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\":3,\"roleName\":\"本部门及以下\",\"roleKey\":\"test1\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",1500,1506,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",5,\"1876074027672731650\",1,100,101,102,103,104,105,106,107,108,118,123,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,500,501,1600,1601,1602,1603,1620,1621,1622,1623,1061,1062,1063,1064,1065,1040,1041,1042,1043,1044,1045,1050],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:55:43', 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 (1888788403583803393, '000000', '角色管理', 5, 'org.dromara.system.controller.system.SysRoleController.export()', 'POST', 1, 'admin', '研发部门', '/system/role/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":null,\"roleName\":null,\"roleKey\":null,\"roleSort\":null,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":null,\"superAdmin\":false}', '', 0, '', '2025-02-10 11:13:42', 1315); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888814115959169026, '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\":2,\"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-02-10 12:55:52', 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 (1888814672857882626, '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\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"维修保养\",\"orderNum\":2,\"path\":\"repairMaintain\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 12:58: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 (1888819999594602497, '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\":\"bx:package\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:19: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 (1888820201785221121, '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\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:03', 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 (1888820246190317570, '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\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"维修保养\",\"orderNum\":2,\"path\":\"repairMaintain\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:14', 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 (1888820307641065474, '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\":\"tabler:category-plus\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:29', 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 (1888820804166967297, '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\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"设备维修\",\"orderNum\":2,\"path\":\"repair\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:22: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 (1888835484650397698, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_repair_req\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:20:47', 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 (1888836218615848961, '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-10 14:23:42\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1888835484331630593\",\"dataName\":\"master\",\"tableName\":\"eims_repair_req\",\"tableComment\":\"报修单\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairReq\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairReq\",\"functionName\":\"报修单\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484528762881\",\"tableId\":\"1888835484331630593\",\"columnName\":\"id\",\"columnComment\":\"报修id\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484537151490\",\"tableId\":\"1888835484331630593\",\"columnName\":\"code\",\"columnComment\":\"报修单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"code\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"Code\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484537151491\",\"tableId\":\"1888835484331630593\",\"columnName\":\"status\",\"columnComment\":\"报修状态\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"status\",\"i', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:23:42', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836273208909825, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1888835484331630593\"}', '', 0, '', '2025-02-10 14:23:55', 189); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836970813939713, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740807', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:41', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836977881341954, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740806', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:43', 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 (1888836984348958721, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740805', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:45', 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 (1888836990493614082, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740803', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26: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 (1888836997036728321, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740804', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:48', 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 (1888837017840476162, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740802', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:53', 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 (1888837119866920961, '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-10 14:27:16\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1888835484331630593\",\"dataName\":\"master\",\"tableName\":\"eims_repair_req\",\"tableComment\":\"故障报修\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairReq\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairReq\",\"functionName\":\"故障报修\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484528762881\",\"tableId\":\"1888835484331630593\",\"columnName\":\"id\",\"columnComment\":\"报修id\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484537151490\",\"tableId\":\"1888835484331630593\",\"columnName\":\"code\",\"columnComment\":\"报修单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"code\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"Code\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484537151491\",\"tableId\":\"1888835484331630593\",\"columnName\":\"status\",\"columnComment\":\"报修状态\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"status\",', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:27:17', 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 (1888837193846054914, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1888835484331630593\"}', '', 0, '', '2025-02-10 14:27:35', 76); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888844007144775681, '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\":\"1888837193552453634\",\"parentId\":\"1888814115854311426\",\"menuName\":\"故障报修\",\"orderNum\":1,\"path\":\"repairReq\",\"component\":\"eims/repair-req/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairReq:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:54:39', 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 (1888852561104842753, '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\":\"repair_req_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:28:38', 196); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888852864801812482, '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\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:29:51', 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 (1888852995752177666, '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\":\"repair_req_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:22', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853069957804034, '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\":\"1888852995580211202\",\"dictSort\":2,\"dictLabel\":\"工具\",\"dictValue\":\"2\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:40', 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 (1888853101775794178, '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\":\"1888852864692760577\",\"dictSort\":1,\"dictLabel\":\"设备\",\"dictValue\":\"1\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:47', 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 (1888853150731710465, '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\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:59', 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 (1888853668426264577, '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\":\"repair_urgency_level\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:02', 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 (1888853839579033601, '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\":\"repair_urgency_level\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:43', 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 (1888853895870787585, '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\":\"repair_urgency_level\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:57', 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 (1888854701252653057, '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\":\"repair_req_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:37:09', 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 (1888854928713953281, '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\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:03', 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 (1888854997043359746, '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\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:19', 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 (1888855058531856386, '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\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:34', 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 (1888867248940888065, '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\":\"repair_fault_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:00', 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 (1888867365949386754, '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\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:28', 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 (1888867399830974466, '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\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:36', 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 (1888867428599705602, '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\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:43', 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 (1888867722955960321, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1888867722909822977\",\"code\":\"1212\",\"status\":\"0\",\"occTime\":\"2025-02-10 16:28:42\",\"reqTime\":\"2025-02-10 16:28:41\",\"reqDept\":100,\"reqUser\":\"1888782469222465537\",\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:28:53', 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 (1888867810533027842, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:29:14', 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 (1888867814031077377, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:29:15', 1); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888868122371141634, '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\":\"1888852864692760577\",\"dictSort\":1,\"dictLabel\":\"设备故障\",\"dictValue\":\"1\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30:29', 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 (1888868143497850882, '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\":\"1888852995580211202\",\"dictSort\":2,\"dictLabel\":\"工具故障\",\"dictValue\":\"2\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30: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 (1888868162514825218, '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\":\"1888853150668795905\",\"dictSort\":3,\"dictLabel\":\"其它故障\",\"dictValue\":\"3\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30: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 (1889140637447319553, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"647e3ae18a58477f81d69ab865fb12f5\",\"status\":\"0\",\"occTime\":\"2025-02-11 10:33:07\",\"reqTime\":\"2025-02-11 10:33:05\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'code\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'code\' at row 1\n; Data truncation: Data too long for column \'code\' at row 1', '2025-02-11 10:33:21', 287); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889193135896870913, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889193135716515841\",\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:01:38\",\"reqTime\":\"2025-02-11 14:01:32\",\"reqDept\":100,\"reqUser\":\"1888782469222465537\",\"reqDesc\":\"故障\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:01:58', 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 (1889193482153443330, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889193482098917378\",\"code\":\"WXD202502110001\",\"status\":\"1\",\"occTime\":\"2025-02-11 14:03:06\",\"reqTime\":\"2025-02-11 14:03:04\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"急不急\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"3\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:03:20', 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 (1889194017426325506, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:05:18\",\"reqTime\":\"2025-02-11 14:05:17\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"qwdsdf\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:05:28', 128); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889194117473058817, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:05:18\",\"reqTime\":\"2025-02-11 14:05:17\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"qwdsdf\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:05:52', 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 (1889195670539948034, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:12:02', 104); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889196198305026050, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:14:08', 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 (1889197968636891137, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:21:10', 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 (1889198119262736386, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:21:46', 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 (1889198997566771202, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:25:15', 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 (1889199026759127041, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889199026704601089\",\"code\":\"WXD202502110002\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:25:22', 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 (1889199559142133762, '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\":\"1888867399784837121\",\"dictSort\":2,\"dictLabel\":\"电气故障\",\"dictValue\":\"2\",\"dictType\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:27:29', 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 (1889211052378128385, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1888773961174323201', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 15:13:09', 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 (1889211061311995905, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1888773937203875842', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 15:13:12', 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 (1889484693478047745, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-12 09:20:21\",\"reqTime\":\"2025-02-12 09:20:19\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"111\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-12 09:20:31', 148); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889506260450803713, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889506260404666369\",\"code\":\"BXD202502120002\",\"status\":\"0\",\"occTime\":\"2025-02-12 10:46:03\",\"reqTime\":\"2025-02-12 10:46:00\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"112\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":1000,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 10:46: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 (1889509287685537793, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1888867722909822977', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 10:58:14', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889510345493200898, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889510345426092033\",\"code\":\"BXD202502120003\",\"status\":\"1\",\"occTime\":\"2025-02-12 11:02:07\",\"reqTime\":\"2025-02-12 11:02:05\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"12\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1876204236438884354\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:02:26', 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 (1889510921069150209, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889510920993652738\",\"code\":\"BXD202502120004\",\"status\":\"0\",\"occTime\":\"2025-02-12 11:04:31\",\"reqTime\":\"2025-02-12 11:04:29\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"122\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:04:44', 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 (1889511033413582849, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889511033325502466\",\"code\":\"BXD202502120005\",\"status\":\"0\",\"occTime\":\"2025-02-12 11:05:00\",\"reqTime\":\"2025-02-12 11:04:58\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"122\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1878988394319949826\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:05:10', 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 (1889547371311624193, '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-02-12 13:29:34', 9504); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547476622209025, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":5,\"configKey\":\"image\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"image\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:29:59', 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 (1889547577700741122, '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-02-12 13:30:23', 5884); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547614421872642, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:30: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 (1889547672689143810, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"1\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:30: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 (1889547770831663106, '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-02-12 13:31:09', 8880); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547798983831554, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:31:16', 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 (1889547983503847426, '000000', '用户头像', 2, 'org.dromara.system.controller.system.SysProfileController.avatar()', 'POST', 1, 'admin', '研发部门', '/system/user/profile/avatar', '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-02-12 13:32:00', 9316); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561357985869825, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:09', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561429511335938, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '本部门及以下已分配,不能删除!', '2025-02-12 14:25:26', 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 (1889561465582350338, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":\"1888782469222465537\",\"roleId\":3}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:34', 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 (1889561471550844930, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":3,\"roleId\":3}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:36', 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 (1889561510847279106, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:45', 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 (1889561520829722625, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '仅本人已分配,不能删除!', '2025-02-12 14:25: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 (1889561547950092289, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":4,\"roleId\":4}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:54', 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 (1889561619160985602, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:26:11', 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 (1889561934367125505, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"lineleader\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:27:26', 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 (1889562679325847554, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repairman\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:30:24', 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 (1889567015141470209, '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\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1875349550770728962\",\"1876074027672731650\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888814115854311426\",\"1888837193552453634\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:47:38', 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 (1889567040319877121, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:47:44', 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 (1889581563961503745, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581563890200577\",\"deptId\":100,\"userName\":\"zhouyuhua\",\"nickName\":\"周育华\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[\"1889561357813903361\"],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:45:26', 113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581665295888385, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581665270722561\",\"deptId\":100,\"userName\":\"ningcanmin\",\"nickName\":\"宁灿敏\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:45:50', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581724121001985, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581724095836162\",\"deptId\":100,\"userName\":\"baoshiwei\",\"nickName\":\"鲍世威\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:04', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581751505612802, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:11', 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 (1889581761966206977, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/1888782469222465537', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:13', 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 (1889581772665876481, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:16', 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 (1889582003939799042, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889561934287433729\",\"userIds\":\"1889581665270722561\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:47:11', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889582063729602561, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889562679283904514\",\"userIds\":\"1889581724095836162\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:47:25', 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 (1889589456425283586, '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\":100,\"menuName\":\"用户列表\",\"orderNum\":0,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"system:user:list\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:16:48', 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 (1889589536205139969, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1888814115854311426\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:17:07', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889595039165554690, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889595038951645185\",\"code\":\"BXD202502120006\",\"status\":\"0\",\"occTime\":\"2025-02-12 16:38:45\",\"reqTime\":\"2025-02-12 16:38:43\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"法国会尽快\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":1000,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:38:59', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889595916387459074, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889595916202909698\",\"code\":\"BXD202502120007\",\"status\":\"0\",\"occTime\":\"2025-02-12 16:42:16\",\"reqTime\":\"2025-02-12 16:42:14\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"1是的是的\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:42:28', 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 (1889596046058561538, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889596045999841281\",\"code\":\"BXD202502120008\",\"status\":\"1\",\"occTime\":\"2025-02-12 16:42:46\",\"reqTime\":\"2025-02-12 16:42:44\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"1规划局快乐客家话\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1876204236438884354\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:42:59', 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 (1889596288925540354, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1888837193552453634\",\"1888814115854311426\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:43:57', 60); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889599005735624706, '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\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1876074027672731650\",\"1888814115854311426\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:54:45', 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 (1889857460492918786, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":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,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:01:45', 1377); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889859221609861122, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":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,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:08:45', 1207); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889859760926056449, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":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,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:10:54', 1016); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860463509700610, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":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,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:13:41', 1117); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860879584653313, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":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,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:15:20', 1100); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860991278968834, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1000,1875827537628749825,1876204236438884354,1878988394319949826', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:15:47', 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 (1889865233985236994, '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\":\"1875349550770728962\",\"menuName\":\"【设备台账】导入\",\"orderNum\":6,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:32:38', 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 (1889865288402137090, '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\":\"1889865233922322434\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】导入\",\"orderNum\":6,\"path\":\"\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:import\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:32:51', 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 (1889865365929652226, '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\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1889589456286871554\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888814115854311426\",\"1889865233922322434\",\"1875349550770728962\",\"1876074027672731650\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:33:10', 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 (1889904377071505409, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:08:11', 307); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889904827539755009, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:09:58', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889905165650989057, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:11:19', 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 (1889906069322178561, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@aaa36194 to class java.lang.Long error ', '2025-02-13 13:14:54', 546); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889907517812482050, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@907b0eff to class java.lang.Long error ', '2025-02-13 13:20:40', 436); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908172803383297, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@907b0eff to class java.lang.Long error ', '2025-02-13 13:23:16', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908547933544450, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:24:45', 8479); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908971294007298, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:26:26', 278); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909428024352769, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:28:15', 99484); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909509884583938, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@3a73d9c2 to class java.util.Date error ', '2025-02-13 13:28:35', 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 (1889909561206087681, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@3a73d9c2 to class java.util.Date error ', '2025-02-13 13:28:47', 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 (1889909730546917378, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@1eea069d to class java.util.Date error ', '2025-02-13 13:29:27', 4044); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889911829162737666, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 225 条数据格式不正确,错误如下:
1、账号 电子镇流器节能灯输入特性分析仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
2、账号 低温恒温槽 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
3、账号 漏电流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
4、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
5、账号 LCR数字电桥 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
6、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
7、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
8、账号 电子负载 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
9、账号 交流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
10、账号 交流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
11、账号 泰克示波器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
12、账号 泰克示波器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
13、账号 冲击耐压试验仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
14、账号 高加速度冲击实验系统 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
15、账号 静电放电发生器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null
16、账号 喷水实验仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.', '2025-02-13 13:37:48', 5646); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889912228376592386, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:
1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper', '2025-02-13 13:39:23', 2408); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889914452754423809, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:
1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eim', '2025-02-13 13:48:13', 1798); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889915068608274433, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:
1、设备 电子镇流器节能灯输入特性分析仪 已存在
2、设备 低温恒温槽 已存在
3、设备 漏电流测试仪 已存在
4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
5、设备 LCR数字电桥 已存在
6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
7、设备 耐电压测试仪 已存在
8、设备 电子负载 已存在
9、设备 交流测试仪 已存在
10、设备 交流测试仪 已存在
11、设备 泰克示波器 已存在
12、设备 泰克示波器 已存在
13、设备 冲击耐压试验仪 已存在
14、设备 高加速度冲击实验系统 已存在
15、设备 静电放电发生器 已存在
16、设备 喷水实验仪 已存在
1、设备 null 导入成功
2、设备 null 导入成功\",\"data\":null}', 0, '', '2025-02-13 15:12:00', 2265); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889935583154651137, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1889935533229850625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:12:11', 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 (1889935589223809025, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1889935530247700482', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:12:12', 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 (1889937943079796737, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:
1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 15:21:34', 2320); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939089232084993, '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-02-13 15:26:07', 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 (1889939423316787202, '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-02-13 15:27:27', 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 (1889939478648045570, '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\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"warning\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:27:40', 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 (1889939534377762818, '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\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:27:53', 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 (1889939612228239361, '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\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:12', 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 (1889939743778390018, '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\":5,\"dictLabel\":\"停用\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"red\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:43', 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 (1889939768776441857, '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\":\"1889939743736446978\",\"dictSort\":5,\"dictLabel\":\"停用\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:49', 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 (1889939832458559490, '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\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:04', 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 (1889939870765137921, '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\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:13', 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 (1889939963253735426, '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\":6,\"dictLabel\":\"新增\",\"dictValue\":\"6\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29: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 (1889940006606061569, '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\":\"1889939963207598082\",\"dictSort\":6,\"dictLabel\":\"新增\",\"dictValue\":\"6\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29: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 (1889940069017305089, '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\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:00', 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 (1889940095294619649, '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\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:07', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940295388086274, '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\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:54', 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 (1889940366758363137, '000000', '字典类型', 3, 'org.dromara.system.controller.system.SysDictDataController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/data/1889939743736446978', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:11', 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 (1889940409749979138, '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\":\"1889939963207598082\",\"dictSort\":5,\"dictLabel\":\"新增\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31: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 (1889940479350259714, '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\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"purple\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:38', 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 (1889940512007110658, '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\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:46', 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 (1889940682664951809, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:32:27', 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 (1889940883534364674, '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\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:33:15', 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 (1889940902836551681, '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\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:33:19', 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 (1889944971441455105, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889944971382734849\",\"code\":\"BXD202502130001\",\"status\":\"0\",\"occTime\":\"2025-02-13 15:49:15\",\"reqTime\":\"2025-02-13 15:49:13\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"fghjkl\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1889937933705527297\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:49:29', 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 (1889945510464045058, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:
1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 15:51:38', 2363); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948146319867906, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:
1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在
2、设备 低温恒温槽GPA2002E006 已存在
3、设备 漏电流测试仪GPA2004H024 已存在
4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
5、设备 LCR数字电桥GPA2005H027 已存在
6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
7、设备 耐电压测试仪GPA2004H028 已存在
8、设备 电子负载GPG2010WL003 已存在
9、设备 交流测试仪GPA2007H048 已存在
10、设备 交流测试仪GPA2007H049 已存在
11、设备 泰克示波器GPG2010WL001 已存在
12、', '2025-02-13 16:02:06', 2547); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948344102273025, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:
1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 16:02:53', 2517); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948901437194242, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:
1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在
2、设备 低温恒温槽GPA2002E006 已存在
3、设备 漏电流测试仪GPA2004H024 已存在
4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
5、设备 LCR数字电桥GPA2005H027 已存在
6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1
7、设备 耐电压测试仪GPA2004H028 已存在
8、设备 电子负载GPG2010WL003 已存在
9、设备 交流测试仪GPA2007H048 已存在
10、设备 交流测试仪GPA2007H049 已存在
11、设备 泰克示波器GPG2010WL001 已存在
12、', '2025-02-13 16:05:06', 17548); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889952477525835777, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, rated_power, purchase_date, location, contact_phone, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n; Data truncation: Data too long for column \'contact_phone\' at row 1', '2025-02-13 16:19:19', 1849); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889953717315960833, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:
1、设备 电子镇流器节能灯输入特性分析仪 导入成功
2、设备 低温恒温槽 导入成功
3、设备 漏电流测试仪 导入成功
4、设备 耐电压测试仪 导入成功
5、设备 LCR数字电桥 导入成功
6、设备 耐电压测试仪 导入成功
7、设备 耐电压测试仪 导入成功
8、设备 电子负载 导入成功
9、设备 交流测试仪 导入成功
10、设备 交流测试仪 导入成功
11、设备 泰克示波器 导入成功
12、设备 泰克示波器 导入成功
13、设备 冲击耐压试验仪 导入成功
14、设备 高加速度冲击实验系统 导入成功
15、设备 静电放电发生器 导入成功
16、设备 喷水实验仪 导入成功
17、设备 机械振动台 导入成功
18、设备 群脉冲发生器 导入成功
19、设备 恒温水槽 导入成功
20、设备 炉温测试仪 导入成功
21、设备 数字存储示波器 导入成功
22、设备 频率计数器 导入成功
23、设备 交流测试仪 导入成功
24、设备 交流测试仪 导入成功
25、设备 交流测试仪 导入成功
26、设备 交流测试仪 导入成功
27、设备 交流测试仪 导入成功
28、设备 交流测试仪 导入成功
29、设备 LCR数字电桥 导入成功
30、设备 DC高精度传感器测试仪 导入成功
31、设备 DC高精度传感器测试仪 导入成功
32、设备 DC高精度传感器测试仪 导入成功
33、设备 DC高精度传感器测试仪 导入成功
34、设备 数字存储示波器 导入成功
35、设备 数字存储示波器 导入成功
36、设备 数字存储示波器 导入成功
37、设备 数字存储示波器 导入成功
38、设备 耐电压测试仪 导入成功
39、设备 耐电压测试仪 导入成功
40、设备 光强度测量仪 导入成功
41、设备 耐电压测试仪 导入成功
42、设备 耐电压测试仪 导入成功
43、设备 钻铣镗磨床 导入成功
44、设备 切板机 导入成功
45、设备 车床 导入成功
46、设备 车床 导入成功
47、设备 鼓风干燥箱 导入成功
48、设备 鼓风干燥箱 导入成功
49、设备 null 导入成功
50、设备 扎线机 导入成功
51、设备 台式钻攻两用机 导入成功
52、设备 升降机 导入成功
53、设备 空压机 导入成功
54、设备 自动捆包机 导入成功
55、设备 超声波清洗机 导入成功
56、设备 自动切管机 导入成功
57、设备 热熔机 导入成功
58、设备 真空包装机 导入成功
59、设备 超音波熔接机 导入成功
60、设备 数控车床 导入成功
61、设备 全自动绕线机 导入成功
62、设备 半导体激光打标机 导入成功
63、设备 八温区回流焊 导入成功
64、设备 贴片机 导入成功
65、设备 接驳台 导入成功
66、设备 烟雾净化过滤系统 导入成功
67、设备 MB1000媒介喷射器 导入成功
68、设备 贴片机 导入成功
69、设备 接驳台 导入成功
70、设备 接驳台 导入成功
71、设备 超音波手焊接机 导入成功
72、设备 冰箱 导入成功
73、设备 稳变压器 导入成功
74、设备 端子机 导入成功
75、设备 饶线机 导入成功
76、设备 CNC瑞士型自动车床 导入成功
77、设备 自动棒材送料机 导入成功
78、设备 双液自动点胶机 导入成功
79、设备 激光调阻机 导入成功
80、设备 传感器自动检测系统 导入成功
81、设备 精密数控车床 导入成功
82、设备 超音波熔接机 导入成功
83、设备 双液自动点胶机 导入成功
84、设备 油压闸式剪板机 导入成功
85、设备 折弯机 导入成功
86、设备 工作台(4人) 导入成功
87、设备 工作台 导入成功
88、设备 工作台(封灌间) 导入成功
89、设备 货架(重) 导入成功
90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:24:15', 1133); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889954347682103298, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:
1、设备 电子镇流器节能灯输入特性分析仪 导入成功
2、设备 低温恒温槽 导入成功
3、设备 漏电流测试仪 导入成功
4、设备 耐电压测试仪 导入成功
5、设备 LCR数字电桥 导入成功
6、设备 耐电压测试仪 导入成功
7、设备 耐电压测试仪 导入成功
8、设备 电子负载 导入成功
9、设备 交流测试仪 导入成功
10、设备 交流测试仪 导入成功
11、设备 泰克示波器 导入成功
12、设备 泰克示波器 导入成功
13、设备 冲击耐压试验仪 导入成功
14、设备 高加速度冲击实验系统 导入成功
15、设备 静电放电发生器 导入成功
16、设备 喷水实验仪 导入成功
17、设备 机械振动台 导入成功
18、设备 群脉冲发生器 导入成功
19、设备 恒温水槽 导入成功
20、设备 炉温测试仪 导入成功
21、设备 数字存储示波器 导入成功
22、设备 频率计数器 导入成功
23、设备 交流测试仪 导入成功
24、设备 交流测试仪 导入成功
25、设备 交流测试仪 导入成功
26、设备 交流测试仪 导入成功
27、设备 交流测试仪 导入成功
28、设备 交流测试仪 导入成功
29、设备 LCR数字电桥 导入成功
30、设备 DC高精度传感器测试仪 导入成功
31、设备 DC高精度传感器测试仪 导入成功
32、设备 DC高精度传感器测试仪 导入成功
33、设备 DC高精度传感器测试仪 导入成功
34、设备 数字存储示波器 导入成功
35、设备 数字存储示波器 导入成功
36、设备 数字存储示波器 导入成功
37、设备 数字存储示波器 导入成功
38、设备 耐电压测试仪 导入成功
39、设备 耐电压测试仪 导入成功
40、设备 光强度测量仪 导入成功
41、设备 耐电压测试仪 导入成功
42、设备 耐电压测试仪 导入成功
43、设备 钻铣镗磨床 导入成功
44、设备 切板机 导入成功
45、设备 车床 导入成功
46、设备 车床 导入成功
47、设备 鼓风干燥箱 导入成功
48、设备 鼓风干燥箱 导入成功
49、设备 null 导入成功
50、设备 扎线机 导入成功
51、设备 台式钻攻两用机 导入成功
52、设备 升降机 导入成功
53、设备 空压机 导入成功
54、设备 自动捆包机 导入成功
55、设备 超声波清洗机 导入成功
56、设备 自动切管机 导入成功
57、设备 热熔机 导入成功
58、设备 真空包装机 导入成功
59、设备 超音波熔接机 导入成功
60、设备 数控车床 导入成功
61、设备 全自动绕线机 导入成功
62、设备 半导体激光打标机 导入成功
63、设备 八温区回流焊 导入成功
64、设备 贴片机 导入成功
65、设备 接驳台 导入成功
66、设备 烟雾净化过滤系统 导入成功
67、设备 MB1000媒介喷射器 导入成功
68、设备 贴片机 导入成功
69、设备 接驳台 导入成功
70、设备 接驳台 导入成功
71、设备 超音波手焊接机 导入成功
72、设备 冰箱 导入成功
73、设备 稳变压器 导入成功
74、设备 端子机 导入成功
75、设备 饶线机 导入成功
76、设备 CNC瑞士型自动车床 导入成功
77、设备 自动棒材送料机 导入成功
78、设备 双液自动点胶机 导入成功
79、设备 激光调阻机 导入成功
80、设备 传感器自动检测系统 导入成功
81、设备 精密数控车床 导入成功
82、设备 超音波熔接机 导入成功
83、设备 双液自动点胶机 导入成功
84、设备 油压闸式剪板机 导入成功
85、设备 折弯机 导入成功
86、设备 工作台(4人) 导入成功
87、设备 工作台 导入成功
88、设备 工作台(封灌间) 导入成功
89、设备 货架(重) 导入成功
90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:26:45', 2438); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889954805138063361, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:
1、设备 电子镇流器节能灯输入特性分析仪 导入成功
2、设备 低温恒温槽 导入成功
3、设备 漏电流测试仪 导入成功
4、设备 耐电压测试仪 导入成功
5、设备 LCR数字电桥 导入成功
6、设备 耐电压测试仪 导入成功
7、设备 耐电压测试仪 导入成功
8、设备 电子负载 导入成功
9、设备 交流测试仪 导入成功
10、设备 交流测试仪 导入成功
11、设备 泰克示波器 导入成功
12、设备 泰克示波器 导入成功
13、设备 冲击耐压试验仪 导入成功
14、设备 高加速度冲击实验系统 导入成功
15、设备 静电放电发生器 导入成功
16、设备 喷水实验仪 导入成功
17、设备 机械振动台 导入成功
18、设备 群脉冲发生器 导入成功
19、设备 恒温水槽 导入成功
20、设备 炉温测试仪 导入成功
21、设备 数字存储示波器 导入成功
22、设备 频率计数器 导入成功
23、设备 交流测试仪 导入成功
24、设备 交流测试仪 导入成功
25、设备 交流测试仪 导入成功
26、设备 交流测试仪 导入成功
27、设备 交流测试仪 导入成功
28、设备 交流测试仪 导入成功
29、设备 LCR数字电桥 导入成功
30、设备 DC高精度传感器测试仪 导入成功
31、设备 DC高精度传感器测试仪 导入成功
32、设备 DC高精度传感器测试仪 导入成功
33、设备 DC高精度传感器测试仪 导入成功
34、设备 数字存储示波器 导入成功
35、设备 数字存储示波器 导入成功
36、设备 数字存储示波器 导入成功
37、设备 数字存储示波器 导入成功
38、设备 耐电压测试仪 导入成功
39、设备 耐电压测试仪 导入成功
40、设备 光强度测量仪 导入成功
41、设备 耐电压测试仪 导入成功
42、设备 耐电压测试仪 导入成功
43、设备 钻铣镗磨床 导入成功
44、设备 切板机 导入成功
45、设备 车床 导入成功
46、设备 车床 导入成功
47、设备 鼓风干燥箱 导入成功
48、设备 鼓风干燥箱 导入成功
49、设备 null 导入成功
50、设备 扎线机 导入成功
51、设备 台式钻攻两用机 导入成功
52、设备 升降机 导入成功
53、设备 空压机 导入成功
54、设备 自动捆包机 导入成功
55、设备 超声波清洗机 导入成功
56、设备 自动切管机 导入成功
57、设备 热熔机 导入成功
58、设备 真空包装机 导入成功
59、设备 超音波熔接机 导入成功
60、设备 数控车床 导入成功
61、设备 全自动绕线机 导入成功
62、设备 半导体激光打标机 导入成功
63、设备 八温区回流焊 导入成功
64、设备 贴片机 导入成功
65、设备 接驳台 导入成功
66、设备 烟雾净化过滤系统 导入成功
67、设备 MB1000媒介喷射器 导入成功
68、设备 贴片机 导入成功
69、设备 接驳台 导入成功
70、设备 接驳台 导入成功
71、设备 超音波手焊接机 导入成功
72、设备 冰箱 导入成功
73、设备 稳变压器 导入成功
74、设备 端子机 导入成功
75、设备 饶线机 导入成功
76、设备 CNC瑞士型自动车床 导入成功
77、设备 自动棒材送料机 导入成功
78、设备 双液自动点胶机 导入成功
79、设备 激光调阻机 导入成功
80、设备 传感器自动检测系统 导入成功
81、设备 精密数控车床 导入成功
82、设备 超音波熔接机 导入成功
83、设备 双液自动点胶机 导入成功
84、设备 油压闸式剪板机 导入成功
85、设备 折弯机 导入成功
86、设备 工作台(4人) 导入成功
87、设备 工作台 导入成功
88、设备 工作台(封灌间) 导入成功
89、设备 货架(重) 导入成功
90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:28:34', 2222); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889955045811421185, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:
1、设备 电子镇流器节能灯输入特性分析仪 导入成功
2、设备 低温恒温槽 导入成功
3、设备 漏电流测试仪 导入成功
4、设备 耐电压测试仪 导入成功
5、设备 LCR数字电桥 导入成功
6、设备 耐电压测试仪 导入成功
7、设备 耐电压测试仪 导入成功
8、设备 电子负载 导入成功
9、设备 交流测试仪 导入成功
10、设备 交流测试仪 导入成功
11、设备 泰克示波器 导入成功
12、设备 泰克示波器 导入成功
13、设备 冲击耐压试验仪 导入成功
14、设备 高加速度冲击实验系统 导入成功
15、设备 静电放电发生器 导入成功
16、设备 喷水实验仪 导入成功
17、设备 机械振动台 导入成功
18、设备 群脉冲发生器 导入成功
19、设备 恒温水槽 导入成功
20、设备 炉温测试仪 导入成功
21、设备 数字存储示波器 导入成功
22、设备 频率计数器 导入成功
23、设备 交流测试仪 导入成功
24、设备 交流测试仪 导入成功
25、设备 交流测试仪 导入成功
26、设备 交流测试仪 导入成功
27、设备 交流测试仪 导入成功
28、设备 交流测试仪 导入成功
29、设备 LCR数字电桥 导入成功
30、设备 DC高精度传感器测试仪 导入成功
31、设备 DC高精度传感器测试仪 导入成功
32、设备 DC高精度传感器测试仪 导入成功
33、设备 DC高精度传感器测试仪 导入成功
34、设备 数字存储示波器 导入成功
35、设备 数字存储示波器 导入成功
36、设备 数字存储示波器 导入成功
37、设备 数字存储示波器 导入成功
38、设备 耐电压测试仪 导入成功
39、设备 耐电压测试仪 导入成功
40、设备 光强度测量仪 导入成功
41、设备 耐电压测试仪 导入成功
42、设备 耐电压测试仪 导入成功
43、设备 钻铣镗磨床 导入成功
44、设备 切板机 导入成功
45、设备 车床 导入成功
46、设备 车床 导入成功
47、设备 鼓风干燥箱 导入成功
48、设备 鼓风干燥箱 导入成功
49、设备 null 导入成功
50、设备 扎线机 导入成功
51、设备 台式钻攻两用机 导入成功
52、设备 升降机 导入成功
53、设备 空压机 导入成功
54、设备 自动捆包机 导入成功
55、设备 超声波清洗机 导入成功
56、设备 自动切管机 导入成功
57、设备 热熔机 导入成功
58、设备 真空包装机 导入成功
59、设备 超音波熔接机 导入成功
60、设备 数控车床 导入成功
61、设备 全自动绕线机 导入成功
62、设备 半导体激光打标机 导入成功
63、设备 八温区回流焊 导入成功
64、设备 贴片机 导入成功
65、设备 接驳台 导入成功
66、设备 烟雾净化过滤系统 导入成功
67、设备 MB1000媒介喷射器 导入成功
68、设备 贴片机 导入成功
69、设备 接驳台 导入成功
70、设备 接驳台 导入成功
71、设备 超音波手焊接机 导入成功
72、设备 冰箱 导入成功
73、设备 稳变压器 导入成功
74、设备 端子机 导入成功
75、设备 饶线机 导入成功
76、设备 CNC瑞士型自动车床 导入成功
77、设备 自动棒材送料机 导入成功
78、设备 双液自动点胶机 导入成功
79、设备 激光调阻机 导入成功
80、设备 传感器自动检测系统 导入成功
81、设备 精密数控车床 导入成功
82、设备 超音波熔接机 导入成功
83、设备 双液自动点胶机 导入成功
84、设备 油压闸式剪板机 导入成功
85、设备 折弯机 导入成功
86、设备 工作台(4人) 导入成功
87、设备 工作台 导入成功
88、设备 工作台(封灌间) 导入成功
89、设备 货架(重) 导入成功
90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:29:31', 2228); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889960170474962945, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'java.lang.NoSuchMethodError: org.dromara.eims.domain.vo.EimsEquImportVo.getPurchaseDate()Ljava/util/Date;', '2025-02-13 16:49:53', 68); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889960608494628865, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 325 条数据格式不正确,错误如下:
1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在
2、设备 老化台 导入失败:No format fit for date String [2002-03] !
3、设备 低温恒温槽GPA2002E006 已存在
4、设备 漏电流测试仪GPA2004H024 已存在
5、设备 耐电压测试仪GPA2004H026 已存在
6、设备 LCR数字电桥GPA2005H027 已存在
7、设备 耐电压测试仪GPA2006H028 已存在
8、设备 耐电压测试仪GPA2004H028 已存在
9、设备 电子负载GPG2010WL003 已存在
10、设备 交流测试仪GPA2007H048 已存在
11、设备 交流测试仪GPA2007H049 已存在
12、设备 泰克示波器GPG2010WL001 已存在
13、设备 泰克示波器GPA2007F052 已存在
14、设备 冲击耐压试验仪GPA2007D053 已存在
15、设备 高加速度冲击实验系统GPA2007E001 已存在
16、设备 静电放电发生器GPA2007E055 已存在
17、设备 喷水实验仪GPA2007E056 已存在
18、设备 机械振动台GPA2007E002 已存在
19、设备 群脉冲发生器GPA2007D058 已存在
20、设备 恒温水槽GPA2007G059 已存在
21、设备 炉温测试仪GPA2008E061 已存在
22、设备 数字存储示波器GPA2008H062 已存在
23、设备 频率计数器GPA2008G063 已存在
24、设备 交流测试仪GPA2008H064 已存在
25、设备 交流测试仪GPA2008H065 已存在
26、设备 交流测试仪GPA2008H066 已存在
27、设备 交流测试仪GPA2008H067 已存在
28、设备 交流测试仪GPA2008H068 已存在
29、设备 交流测试仪GPA2008H069 已存在
30、设备 LCR数字电桥GPA2008WL070 已存在
31、设备 DC高精度传感器测试仪GPA2008G073 已存在
32、设备 DC高精度传感器测试仪GPA2008G075 已存在
33、设备 DC高精度传感器测试仪GPA2008G076 已存在
34、设备 DC高精度传感器测试仪GPA2008G078 已存在
35、设备 数字存储示波器GPA2008H079 已存在
36、设备 数字存储示波器GPA2008H080 已存在
37、设备 数字存储示波器GPA2008WL017 已存在
38、设备 数字存储示波器GPA2008H082 已存在
39、设备 示波器 导入失败:No format fit for date String [09-09-08] !
40、设备 示波器 导入失败:No format fit for date String [09-09-08] !
41、设备 直流电源 导入失败:No format fit for date String [09-09-08] !
42、设备 频普分析仪 导入失败:No format fit for date String [09-09-08] !
43、设备 数字示波器 导入失败:No format fit for date String [09-12-24] !
44、设备 高频测试台 导入失败:No format fit for date String [09-11-10] !
45、设备 低频测试台 导入失败:No format fit for date String [09-11-10] !
46、设备 数字示波器 导入失败:No format fit for date String [10-01-06] !
47、设备 张力计 导入失败:No format fit for date String [10-01-22] !
48、设备 逻辑分析仪 导入失败:No format fit for date String [10-02-02] !
49、设备 耐压力测试仪 导入失败:No format fit for date String [10-06-05] !
50、设备', '2025-02-13 16:51:37', 14313); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889963232417611777, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 48 条数据格式不正确,错误如下:
1、设备 卧式金属带锯床 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, contact_phone, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n; Data truncation: Data too long for column \'profile\' at row 1
2、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1
3、设备 烟气便携式分析仪GPA2015E002 已存在
4、设备 全自动传感器测试仪GPA2018NL020 已存在
5、设备 全自动传感器测试仪GPA2018NL021 已存在
6、设备 反射率测定仪GPA2019NL001 已存在
7、设备 10.4寸电容一体机GPC2019NL002 已存在
8、设备 无线二维码扫描设备GPC2019NL003 已存在
9、设备 电动铭牌刻字机GPC2019NH001 已存在
10、设备 无线二维码扫描设备GPC2019NL005 已存在1、设备 卧式金属带锯床 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, contact_phone, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n; Data truncation: Data too long for column \'profile\' at row 1
2、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1
3、设备 烟气便携式分析仪GPA2015E002 已存在
4、设备 全自动传感器测试仪GPA2018NL020 已存在
5、设备 全自动传感器测试仪GPA2018NL021 已存在
6、设备 反射率测定仪GPA2019NL001 已存在
7、设备 10.4寸电容一体机GPC2019NL002 已存在
8、设备 无线二维码扫描设备GPC2019NL003 已存在
9、设备 电动铭牌刻字机GPC2019NH001 已存在
10、设备 无线二维码扫描设备GPC2019NL005 已存在1、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1
2、设备 烟气便携式分析仪GPA2015E002 已存在
3、设备 全自动传感器测试仪GPA2018NL020 已存在
4、设备 全自动传感器测试仪GPA2018NL021 已存在
5、设备 反射率测定仪GPA2019NL001 已存在
6、设备 10.4寸电容一体机GPC2019NL002 已存在
7、设备 无线二维码扫描设备GPC2019NL003 已存在
8、设备 电动铭牌刻字机GPC2019NH001 已存在
9、设备 无线二维码扫描设备GPC2019NL005 已存在
10、设备 无线二维码扫描设备GPC2019NL006 已存在
11、设备 无线二维码扫描设备GPC2019NL007 已存在
12、设备 铝型材推车GPB2019NL001 已存在
13、设备 铝型材推车GPB2019NL002 已存在
14、设备 车间小推车GPD2019NL010 已存在
15、设备 加速度冲击测试系统GPA2018NL027 已存在
16、设备 读码器GPC2019NL011 已存在
17、设备 车间小推车GPD2019NL011 已存在
18、设备 车间小推车GPD2019NL012 已存在
19、设备 读码器GPC2019NL012 已存在
20、设备 触摸屏GPC2019NL013 已存在
21、设备 车间小推车GPD2019NL014 已存在
22、设备 高精度电动位移滑台GPD2018NL038 已存在
23、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
24、设备 铝型材小推车GPB2019NL003 已存在
25、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
26、设备 Winson手持扫码枪GPC2019NL015 已存在
27、设备 反射率测定仪GPA2019NL001 已存在
28、设备 Winson手持扫码枪GPC2019NL016 已存在
29、设备 车间小推车GPD2019NL016 已存在
30、设备 车间小推车GPD2019NL017 已存在
31、设备 车间小推车GPD2019NL018 已存在
32、设备 车间小推车GPD2019NL019 已存在
33、设备 电源 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.My', '2025-02-13 17:35:30', 18106); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889973977997967361, '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\":\"1889971572669480961\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":\"GPA2001G004\",\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":\"PF9810A\",\"madeIn\":\"杭州远方仪器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":\"生产技术部\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"\",\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 17:44:45', 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 (1889983876379217921, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 44 条数据格式不正确,错误如下:
1、设备 烟气便携式分析仪GPA2015E002 已存在
2、设备 全自动传感器测试仪GPA2018NL020 已存在
3、设备 全自动传感器测试仪GPA2018NL021 已存在
4、设备 反射率测定仪GPA2019NL001 已存在
5、设备 10.4寸电容一体机GPC2019NL002 已存在
6、设备 无线二维码扫描设备GPC2019NL003 已存在
7、设备 电动铭牌刻字机GPC2019NH001 已存在
8、设备 无线二维码扫描设备GPC2019NL005 已存在
9、设备 无线二维码扫描设备GPC2019NL006 已存在
10、设备 无线二维码扫描设备GPC2019NL007 已存在
11、设备 铝型材推车GPB2019NL001 已存在
12、设备 铝型材推车GPB2019NL002 已存在
13、设备 车间小推车GPD2019NL010 已存在
14、设备 加速度冲击测试系统GPA2018NL027 已存在
15、设备 读码器GPC2019NL011 已存在
16、设备 车间小推车GPD2019NL011 已存在
17、设备 车间小推车GPD2019NL012 已存在
18、设备 读码器GPC2019NL012 已存在
19、设备 触摸屏GPC2019NL013 已存在
20、设备 车间小推车GPD2019NL014 已存在
21、设备 高精度电动位移滑台GPD2018NL038 已存在
22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
23、设备 铝型材小推车GPB2019NL003 已存在
24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
25、设备 Winson手持扫码枪GPC2019NL015 已存在
26、设备 反射率测定仪GPA2019NL001 已存在
27、设备 Winson手持扫码枪GPC2019NL016 已存在
28、设备 车间小推车GPD2019NL016 已存在
29、设备 车间小推车GPD2019NL017 已存在
30、设备 车间小推车GPD2019NL018 已存在
31、设备 车间小推车GPD2019NL019 已存在
32、设备 戴尔电脑(显示器)GPC2022NH056 已存在
33、设备 工作台GPD2022NL228 已存在
34、设备 松京除湿机GPC2022NA046 已存在
35、设备 松京除湿机GPC2022NA047 已存在
36、设备 松京除湿机GPC2022NA048 已存在
37、设备 中型货架GPD2022NA194 已存在
38、设备 中型货架GPD2023NL021 已存在
39、设备 大理石平台架GPD2023NL036 已存在
40、设备 大理石平台架GPD2023NL037 已存在
41、设备 工作台GPD2023NL156 已存在
42、设备 GPA2023NL070-077生产制造部 已存在
43、设备 GPA2023NL070-077生产制造部 已存在
44、设备 GPA2023NL070-077生产制造部 已存在', '2025-02-13 18:24:05', 17609); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890196258112221186, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 47 条数据格式不正确,错误如下:
1、设备 烟气便携式分析仪GPA2015E002 已存在
2、设备 全自动传感器测试仪GPA2018NL020 已存在
3、设备 全自动传感器测试仪GPA2018NL021 已存在
4、设备 反射率测定仪GPA2019NL001 已存在
5、设备 10.4寸电容一体机GPC2019NL002 已存在
6、设备 无线二维码扫描设备GPC2019NL003 已存在
7、设备 电动铭牌刻字机GPC2019NH001 已存在
8、设备 无线二维码扫描设备GPC2019NL005 已存在
9、设备 无线二维码扫描设备GPC2019NL006 已存在
10、设备 无线二维码扫描设备GPC2019NL007 已存在
11、设备 铝型材推车GPB2019NL001 已存在
12、设备 铝型材推车GPB2019NL002 已存在
13、设备 车间小推车GPD2019NL010 已存在
14、设备 加速度冲击测试系统GPA2018NL027 已存在
15、设备 读码器GPC2019NL011 已存在
16、设备 车间小推车GPD2019NL011 已存在
17、设备 车间小推车GPD2019NL012 已存在
18、设备 读码器GPC2019NL012 已存在
19、设备 触摸屏GPC2019NL013 已存在
20、设备 车间小推车GPD2019NL014 已存在
21、设备 高精度电动位移滑台GPD2018NL038 已存在
22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
23、设备 铝型材小推车GPB2019NL003 已存在
24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
25、设备 Winson手持扫码枪GPC2019NL015 已存在
26、设备 反射率测定仪GPA2019NL001 已存在
27、设备 Winson手持扫码枪GPC2019NL016 已存在
28、设备 车间小推车GPD2019NL016 已存在
29、设备 车间小推车GPD2019NL017 已存在
30、设备 车间小推车GPD2019NL018 已存在
31、设备 车间小推车GPD2019NL019 已存在
32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorrect date value: ', '2025-02-14 08:28:01', 14116); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890198305565904897, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 44 条数据格式不正确,错误如下:
1、设备 烟气便携式分析仪GPA2015E002 已存在
2、设备 全自动传感器测试仪GPA2018NL020 已存在
3、设备 全自动传感器测试仪GPA2018NL021 已存在
4、设备 反射率测定仪GPA2019NL001 已存在
5、设备 10.4寸电容一体机GPC2019NL002 已存在
6、设备 无线二维码扫描设备GPC2019NL003 已存在
7、设备 电动铭牌刻字机GPC2019NH001 已存在
8、设备 无线二维码扫描设备GPC2019NL005 已存在
9、设备 无线二维码扫描设备GPC2019NL006 已存在
10、设备 无线二维码扫描设备GPC2019NL007 已存在
11、设备 铝型材推车GPB2019NL001 已存在
12、设备 铝型材推车GPB2019NL002 已存在
13、设备 车间小推车GPD2019NL010 已存在
14、设备 加速度冲击测试系统GPA2018NL027 已存在
15、设备 读码器GPC2019NL011 已存在
16、设备 车间小推车GPD2019NL011 已存在
17、设备 车间小推车GPD2019NL012 已存在
18、设备 读码器GPC2019NL012 已存在
19、设备 触摸屏GPC2019NL013 已存在
20、设备 车间小推车GPD2019NL014 已存在
21、设备 高精度电动位移滑台GPD2018NL038 已存在
22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
23、设备 铝型材小推车GPB2019NL003 已存在
24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
25、设备 Winson手持扫码枪GPC2019NL015 已存在
26、设备 反射率测定仪GPA2019NL001 已存在
27、设备 Winson手持扫码枪GPC2019NL016 已存在
28、设备 车间小推车GPD2019NL016 已存在
29、设备 车间小推车GPD2019NL017 已存在
30、设备 车间小推车GPD2019NL018 已存在
31、设备 车间小推车GPD2019NL019 已存在
32、设备 戴尔电脑(显示器)GPC2022NH056 已存在
33、设备 工作台GPD2022NL228 已存在
34、设备 松京除湿机GPC2022NA046 已存在
35、设备 松京除湿机GPC2022NA047 已存在
36、设备 松京除湿机GPC2022NA048 已存在
37、设备 中型货架GPD2022NA194 已存在
38、设备 中型货架GPD2023NL021 已存在
39、设备 大理石平台架GPD2023NL036 已存在
40、设备 大理石平台架GPD2023NL037 已存在
41、设备 工作台GPD2023NL156 已存在
42、设备 GPA2023NL070-077生产制造部 已存在
43、设备 GPA2023NL070-077生产制造部 已存在
44、设备 GPA2023NL070-077生产制造部 已存在', '2025-02-14 08:36:09', 14586); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890198896081965058, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 47 条数据格式不正确,错误如下:
1、设备 烟气便携式分析仪GPA2015E002 已存在
2、设备 全自动传感器测试仪GPA2018NL020 已存在
3、设备 全自动传感器测试仪GPA2018NL021 已存在
4、设备 反射率测定仪GPA2019NL001 已存在
5、设备 10.4寸电容一体机GPC2019NL002 已存在
6、设备 无线二维码扫描设备GPC2019NL003 已存在
7、设备 电动铭牌刻字机GPC2019NH001 已存在
8、设备 无线二维码扫描设备GPC2019NL005 已存在
9、设备 无线二维码扫描设备GPC2019NL006 已存在
10、设备 无线二维码扫描设备GPC2019NL007 已存在
11、设备 铝型材推车GPB2019NL001 已存在
12、设备 铝型材推车GPB2019NL002 已存在
13、设备 车间小推车GPD2019NL010 已存在
14、设备 加速度冲击测试系统GPA2018NL027 已存在
15、设备 读码器GPC2019NL011 已存在
16、设备 车间小推车GPD2019NL011 已存在
17、设备 车间小推车GPD2019NL012 已存在
18、设备 读码器GPC2019NL012 已存在
19、设备 触摸屏GPC2019NL013 已存在
20、设备 车间小推车GPD2019NL014 已存在
21、设备 高精度电动位移滑台GPD2018NL038 已存在
22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
23、设备 铝型材小推车GPB2019NL003 已存在
24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
25、设备 Winson手持扫码枪GPC2019NL015 已存在
26、设备 反射率测定仪GPA2019NL001 已存在
27、设备 Winson手持扫码枪GPC2019NL016 已存在
28、设备 车间小推车GPD2019NL016 已存在
29、设备 车间小推车GPD2019NL017 已存在
30、设备 车间小推车GPD2019NL018 已存在
31、设备 车间小推车GPD2019NL019 已存在
32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorrect date value: ', '2025-02-14 08:38:30', 26014); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890201270099972097, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 2691 条数据格式不正确,错误如下:
1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在
2、设备 老化台GPA2002G005 已存在
3、设备 低温恒温槽GPA2002E006 已存在
4、设备 漏电流测试仪GPA2004H024 已存在
5、设备 耐电压测试仪GPA2004H026 已存在
6、设备 LCR数字电桥GPA2005H027 已存在
7、设备 耐电压测试仪GPA2006H028 已存在
8、设备 耐电压测试仪GPA2004H028 已存在
9、设备 电子负载GPG2010WL003 已存在
10、设备 交流测试仪GPA2007H048 已存在
11、设备 交流测试仪GPA2007H049 已存在
12、设备 泰克示波器GPG2010WL001 已存在
13、设备 泰克示波器GPA2007F052 已存在
14、设备 冲击耐压试验仪GPA2007D053 已存在
15、设备 高加速度冲击实验系统GPA2007E001 已存在
16、设备 静电放电发生器GPA2007E055 已存在
17、设备 喷水实验仪GPA2007E056 已存在
18、设备 机械振动台GPA2007E002 已存在
19、设备 群脉冲发生器GPA2007D058 已存在
20、设备 恒温水槽GPA2007G059 已存在
21、设备 炉温测试仪GPA2008E061 已存在
22、设备 数字存储示波器GPA2008H062 已存在
23、设备 频率计数器GPA2008G063 已存在
24、设备 交流测试仪GPA2008H064 已存在
25、设备 交流测试仪GPA2008H065 已存在
26、设备 交流测试仪GPA2008H066 已存在
27、设备 交流测试仪GPA2008H067 已存在
28、设备 交流测试仪GPA2008H068 已存在
29、设备 交流测试仪GPA2008H069 已存在
30、设备 LCR数字电桥GPA2008WL070 已存在
31、设备 DC高精度传感器测试仪GPA2008G073 已存在
32、设备 DC高精度传感器测试仪GPA2008G075 已存在
33、设备 DC高精度传感器测试仪GPA2008G076 已存在
34、设备 DC高精度传感器测试仪GPA2008G078 已存在
35、设备 数字存储示波器GPA2008H079 已存在
36、设备 数字存储示波器GPA2008H080 已存在
37、设备 数字存储示波器GPA2008WL017 已存在
38、设备 数字存储示波器GPA2008H082 已存在
39、设备 可程式高低温实验机GPA2008D083 已存在
40、设备 程控变频电源GPA2009H084 已存在
41、设备 手动液压泵GPA2009G085 已存在
42、设备 释放阀GPA2009G086 已存在
43、设备 示波器GPA2009H097 已存在
44、设备 示波器GPA2009G098 已存在
45、设备 直流电源GPA2009G099 已存在
46、设备 频普分析仪GPA2009F100 已存在
47、设备 数字示波器GPA2009H101 已存在
48、设备 高频测试台GPA2009H102 已存在
49、设备 低频测试台GPA2009H103 已存在
50、设备 数字示波器GPA2010H104 已存在
51、设备 张力计GPA2010G105 已存在
52、设备 逻辑分析仪GPA2010C106 已存在
53、设备 耐压力测试仪GPA2010G107 已存在
54、设备 耐电压测试仪GPA2006H108 已存在
55、设备 耐电压测试仪GPA2006H109 已存在
56、设备 高精度传感器测试仪GPA2010H110 已存在
57、设备 高精度传感器测试仪GPA2010H111 已存在
58、设备 高精度传感器测试仪GPA2010H112 已存在
59、设备 高精度传感器测试仪GPA2010H113 已存在
60、设备 高精度传感器测试仪GPA2010H114 已存在
61、设备 高精度传感器测试仪GPA2010H117 已存在1、设备 烟气便携式分析仪GPA2015E002 已存在
2、设备 全自动传感器测试仪GPA2018NL020 已存在
3、设备 全自动传感器测试仪GPA2018NL021 已存在
4、设备 反射率测定仪GPA2019NL001 已存在
5、设备 10.4寸电容一体机GPC2019NL002 已存在
6、设备 无线二维码扫描设备GPC2019NL003 已存在
7、设备 电动铭牌刻字机GPC2019NH001 已存在
8、设备 无线二维码扫描设备GPC2019NL005 已存在
9、设备 无线二维码扫描设备GPC2019NL006 已存在
10、设备 无线二维码扫描设备GPC2019NL007 已存在
11、设备 铝型材推车GPB2019NL001 已存在
12、设备 铝型材推车GPB2019NL002 已存在
13、设备 车间小推车GPD2019NL010 已存在
14、设备 加速度冲击测试系统GPA2018NL027 已存在
15、设备 读码器GPC2019NL011 已存在
16、设备 车间小推车GPD2019NL011 已存在
17、设备 车间小推车GPD2019NL012 已存在
18、设备 读码器GPC2019NL012 已存在
19、设备 触摸屏GPC2019NL013 已存在
20、设备 车间小推车GPD2019NL014 已存在
21、设备 高精度电动位移滑台GPD2018NL038 已存在
22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在
23、设备 铝型材小推车GPB2019NL003 已存在
24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在
25、设备 Winson手持扫码枪GPC2019NL015 已存在
26、设备 反射率测定仪GPA2019NL001 已存在
27、设备 Winson手持扫码枪GPC2019NL016 已存在
28、设备 车间小推车GPD2019NL016 已存在
29、设备 车间小推车GPD2019NL017 已存在
30、设备 车间小推车GPD2019NL018 已存在
31、设备 车间小推车GPD2019NL019 已存在
32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, import_status, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorr', '2025-02-14 09:54:01', 18355); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218120568471554, '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\":\"1890217827130769409\",\"equCode\":null,\"equTypeId\":1,\"assetNo\":\"GPA2001G004\",\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":\"PF9810A\",\"madeIn\":\"杭州远方仪器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":\"2001-04-01\",\"status\":\"4\",\"location\":\"生产技术部\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"\",\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:54:53', 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 (1890218318317322242, '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\":\"1890218318216658946\",\"inventoryCode\":\"dfghjk\",\"inventoryName\":\"jfgbj\",\"equTypesList\":[\"1\",\"11\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\"],\"inventoryUser\":\"1889581724095836162\",\"userDept\":100,\"startDate\":\"2025-02-14\",\"endDate\":\"2025-02-14\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:55:40', 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 (1890218356271579138, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:55:49', 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 (1890218632982396929, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:56:55', 19836); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218719963873282, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":1,\"createTime\":\"2025-02-14 09:53:43\",\"updateBy\":1,\"updateTime\":\"2025-02-14 09:54:53\",\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"4\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":1,\"location\":\"生产技术部\",\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:57:16', 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 (1890219074747465729, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":1,\"createTime\":\"2025-02-14 09:53:43\",\"updateBy\":1,\"updateTime\":\"2025-02-14 09:54:53\",\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"4\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":1,\"location\":\"生产技术部\",\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:58:41', 28545); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890219130221330434, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:58:54', 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 (1890219160533565442, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:59:01', 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 (1890219545486786562, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:00:33', 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 (1890220667932868609, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:05:00', 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 (1890220686136147970, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:05:05', 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 (1890221077229830146, '000000', '盘点明细', 5, 'org.dromara.eims.controller.EimsInventoryDetailController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inventoryDetail/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"inventoryId\":null,\"equId\":null,\"status\":null,\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '', 0, '', '2025-02-14 10:06:38', 1113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890262999780655106, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:53:13', 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 (1890264219865939969, '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-14 12:58:04\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1890262999453499393\",\"dataName\":\"master\",\"tableName\":\"eims_fixture\",\"tableComment\":\"工具(治具)台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixture\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixture\",\"functionName\":\"工具(治具)台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999663214593\",\"tableId\":\"1890262999453499393\",\"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,\"usableColumn\":false,\"superColumn\":false,\"insert\":false,\"increment\":true,\"query\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999671603201\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_code\",\"columnComment\":\"治具编码\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fixtrueCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"usableColumn\":false,\"superColumn\":false,\"insert\":true,\"increment\":true,\"query\":true,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"FixtrueCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999675797505\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_name\",\"columnComment\":\"治具名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:58:04', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890264549664063490, '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\":\"eims_fixtrue_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:23', 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 (1890264658145542145, '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\":\"eims_fixtrue_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:49', 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 (1890264696896716801, '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\":\"eims_fixtrue_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:58', 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 (1890265298716426241, '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\":\"eims_fixtrue_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:02:21', 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 (1890265387878940673, '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\":\"eims_fixtrue_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:02:43', 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 (1890265467784626177, '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\":\"eims_fixtrue_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:03:02', 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 (1890265656922570754, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.synchDb()', 'GET', 1, 'admin', '研发部门', '/tool/gen/synchDb/1890262999453499393', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:03:47', 106); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265948133097474, '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-14 13:04:56\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1890262999453499393\",\"dataName\":\"master\",\"tableName\":\"eims_fixture\",\"tableComment\":\"工具(治具)台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixture\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixture\",\"functionName\":\"工具(治具)台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999663214593\",\"tableId\":\"1890262999453499393\",\"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,\"usableColumn\":false,\"superColumn\":false,\"insert\":false,\"increment\":true,\"query\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999671603201\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_code\",\"columnComment\":\"治具编码\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fixtrueCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"usableColumn\":false,\"superColumn\":false,\"insert\":true,\"increment\":true,\"query\":true,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"FixtrueCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999675797505\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_name\",\"columnComment\":\"治具名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:04:56', 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 (1890265975270244353, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1890262999453499393\"}', '', 0, '', '2025-02-14 13:05:03', 81); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266425386172418, '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\":\"1890265974959865858\",\"parentId\":0,\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"fixture\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:06:50', 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 (1890266548212170754, '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\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"设备维修\",\"orderNum\":3,\"path\":\"repair\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:07:19', 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 (1890266675832258562, '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\":2,\"path\":\"fixtrue\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:07:50', 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 (1890266761479946242, '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\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"fixture\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:08:10', 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 (1890266883248979970, '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\":\"1890266675786121217\",\"parentId\":0,\"menuName\":\"工具管理\",\"orderNum\":2,\"path\":\"fixtrue\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"carbon:model-alt\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:08:39', 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 (1890304491882651649, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1890265298657705985\",\"dictName\":\"工具(治具)状态\",\"dictType\":\"eims_fixture_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 15:38:06', 75); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890304533167185921, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1890264549630509057\",\"dictName\":\"工具(治具)类型\",\"dictType\":\"eims_fixture_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 15:38:16', 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 (1891294374445051906, '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\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"index\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 09:11:32', 49); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891318327611879425, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture_type\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 10:46:43', 183); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891319443938471938, '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-17 10:51:09\",\"params\":{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891318327058231298\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_type\",\"tableComment\":\"工具类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureType\",\"functionName\":\"工具类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327402164225\",\"tableId\":\"1891318327058231298\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327414747138\",\"tableId\":\"1891318327058231298\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"list\":true,\"pk\":false,\"edit\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"TypeName\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327418941442\",\"tableId\":\"1891318327058231298\",\"columnName\":\"type_co', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 10:51:09', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891320718889447426, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891318327058231298\"}', '', 0, '', '2025-02-17 10:56:13', 229); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891346047737655298, '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\":\"1891320717983477762\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具类型\",\"orderNum\":1,\"path\":\"fixtureType\",\"component\":\"eims/fixture-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:36:52', 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 (1891346631681220609, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346631324704769\",\"typeName\":\"工具\",\"typeCode\":\"tool\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:39:11', 65); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891346744398946306, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:39:38', 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 (1891348168348377089, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"1\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:45:18', 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 (1891348265110970369, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"dw\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:45:41', 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 (1891348349387120641, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346631324704769\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:01', 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 (1891348417997545474, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346631324704769\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:17', 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 (1891348439375912961, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"dw\",\"parentId\":\"1891346744369586178\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:22', 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 (1891348465435123714, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346744369586178\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:28', 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 (1891348482489163778, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346744369586178\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:32', 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 (1891348560784236546, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348560738099201\",\"typeName\":\"校准治具\",\"typeCode\":\"jz\",\"parentId\":\"1891346744369586178\",\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12: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 (1891348638055899137, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346744369586178\",\"orderNum\":2,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:47: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 (1891349293747249154, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346744369586178\",\"orderNum\":3,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:49:46', 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 (1891349329260421121, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348560738099201\",\"typeName\":\"校准治具\",\"typeCode\":\"jz\",\"parentId\":\"1891346744369586178\",\"orderNum\":4,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:49:54', 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 (1891349578058145793, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349577999425537\",\"typeName\":\"组装治具\",\"typeCode\":\"zz\",\"parentId\":\"1891346744369586178\",\"orderNum\":5,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:50:54', 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 (1891349685491048450, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349685461688322\",\"typeName\":\"手动工具\",\"typeCode\":\"sd\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:51:19', 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 (1891349784598257666, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349784564703233\",\"typeName\":\"电动工具\",\"typeCode\":\"dd\",\"parentId\":\"1891346631324704769\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:51:43', 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 (1891349987355107330, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349987325747202\",\"typeName\":\"检测工具\",\"typeCode\":\"jc\",\"parentId\":\"1891346631324704769\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:52:31', 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 (1891350059933343745, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350059899789314\",\"typeName\":\"专用工具\",\"typeCode\":\"zy\",\"parentId\":0,\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:52:49', 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 (1891350110625701890, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350059899789314\",\"typeName\":\"专用工具\",\"typeCode\":\"zy\",\"parentId\":\"1891346631324704769\",\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:53:01', 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 (1891350205031096322, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350204989153281\",\"typeName\":\"清洁工具\",\"typeCode\":\"qj\",\"parentId\":\"1891346631324704769\",\"orderNum\":5,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:53:23', 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 (1891351424881500161, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:58:14', 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 (1891351467919253506, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:58:24', 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 (1891360484339068929, '000000', '工具(治具)台账', 1, 'org.dromara.eims.controller.EimsFixtureController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891360483990941697\",\"fixtureCode\":\"123456\",\"fixtureName\":\"手动扳手\",\"fixtureType\":\"1891349685461688322\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":\"123\",\"specNo\":\"12\",\"madeIn\":\"12\",\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":6,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:34:14', 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 (1891360617441112066, '000000', '工具(治具)台账', 2, 'org.dromara.eims.controller.EimsFixtureController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891360483990941697\",\"fixtureCode\":\"123456\",\"fixtureName\":\"手动扳手2\",\"fixtureType\":\"1891349685461688322\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":\"123\",\"specNo\":\"12\",\"madeIn\":\"12\",\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":6,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:34:46', 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 (1891365808840146946, '000000', '工具(治具)台账', 1, 'org.dromara.eims.controller.EimsFixtureController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891365808617848833\",\"fixtureCode\":\"qwertyu\",\"fixtureName\":\"电动扳手\",\"fixtureType\":\"1891349784564703233\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":null,\"specNo\":null,\"madeIn\":null,\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:55:23', 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 (1891410873713250306, '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\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:54:28', 286); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891410914553188353, '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\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:54: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 (1891411050738044930, '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\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:55:10', 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 (1891411103158456322, '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\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:55:22', 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 (1891660505883197442, '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\":\"fixture_borrow_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:26:25', 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 (1891660585663053826, '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\":\"fixture_borrow_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:26:44', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891660664406917122, '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\":\"fixture_borrow_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:27:02', 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 (1891663277697331202, '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\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:37:25', 278); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688164147130370, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1890265298657705985\",\"dictName\":\"工具(治具)状态\",\"dictType\":\"eims_fixture_status\",\"remark\":\"工具(治具)状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:16:19', 57); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688301158264834, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1891660505694453762\",\"dictName\":\"工具借用状态\",\"dictType\":\"fixture_borrow_status\",\"remark\":\"工具(治具)表-工具是否被借用状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:16:52', 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 (1891688592180047873, '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\":\"fixture_borrow_record_status\",\"remark\":\"工具(治具)借用记录表借用记录状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:18:01', 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 (1891688804248252418, '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\":\"fixture_borrow_record_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:18:51', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688873861115905, '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\":\"fixture_borrow_record_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:19:08', 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 (1891691302069530626, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture_borrow\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:28:47', 204); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716165266108417, '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-18 13:07:34\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"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,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301767540739\",\"tableId\":\"1891691301390053378\",\"columnName\":\"borrow_dept\",\"columnComment\":\"借用部门\",\"columnType\":\"bigint\",\"javaTy', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:35', 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 (1891716189194612738, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.synchDb()', 'GET', 1, 'admin', '研发部门', '/tool/gen/synchDb/1891691301390053378', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:41', 57); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716249458372609, '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-18 13:07:54\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"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,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891716189085560834\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_name\",\"columnComment\":\"借用工具名称\",\"columnType\":\"varchar\",\"ja', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:55', 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 (1891716267300941826, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891691301390053378\"}', '', 0, '', '2025-02-18 13:07:59', 178); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891717860138217474, '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-18 13:14:18\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"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,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891716189085560834\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_name\",\"columnComment\":\"借用工具名称\",\"columnType\":\"varchar\",\"ja', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:14:19', 51); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891717872352030722, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891691301390053378\"}', '', 0, '', '2025-02-18 13:14:22', 81); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891725346312351745, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053419290625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:44:04', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891725352909991938, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053427679234', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:44:05', 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 (1891726234821128194, '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\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具借用\",\"orderNum\":1,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:36', 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 (1891726284909506562, '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\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":1,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:48', 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 (1891726305667117057, '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\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":2,\"path\":\"index\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:53', 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 (1891726325636198401, '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\":\"1891320717983477762\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具类型\",\"orderNum\":3,\"path\":\"fixtureType\",\"component\":\"eims/fixture-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:57', 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 (1891726363229745153, '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\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具借用\",\"orderNum\":4,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:48:06', 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 (1891749059003011074, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891749058814267393\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-18 15:18:02\",\"planReturnTime\":\"2025-02-19 15:18:08\",\"returnTime\":\"2025-02-20 15:18:10\",\"borrowReason\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 15:18:17', 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 (1891772105035378690, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1891772104536256514\",\"deptId\":103,\"userName\":\"zhangsan\",\"nickName\":\"张三\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:49:52', 186); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891772267002621953, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891772266969067521\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":\"1891772104536256514\",\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-18 16:50:22\",\"planReturnTime\":\"2025-02-18 16:50:26\",\"returnTime\":\"2025-02-18 16:50:28\",\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:50: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 (1891772592392531969, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891772592350588929\",\"code\":\"BXD202502180001\",\"status\":\"0\",\"occTime\":\"2025-02-18 16:51:35\",\"reqTime\":\"2025-02-18 16:51:32\",\"reqDept\":103,\"reqUser\":\"1891772104536256514\",\"reqDesc\":\"发热管会尽快\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:51:48', 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 (1892015910257692673, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.EimsEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1,1878311855408050177,1878695098922127361,1878715702941405185,1878716769359974402,1878716793649188865,1878716820266242049,1878716848254832642,1878716874670559233,1878716907243524098', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:58:40', 828); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892015928481943553, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.EimsEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1878716944031764482,1878988619851870210', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:58:44', 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 (1892016155842580482, '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\":\"1892016155767083009\",\"equId\":\"1890217827130769409\",\"trialNum\":1,\"trialDate\":\"2025-02-19\",\"proGoodNum\":1,\"proGoodRate\":1,\"operatorDept\":100,\"operatorId\":\"1889581563890200577\",\"startTime\":\"08:58:58\",\"endTime\":\"08:58:59\",\"runTime\":\"08:59:04\",\"stopTime\":\"08:59:06\",\"planRunTime\":\"08:59:01\",\"debugHistory\":\"ryy\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:59:38', 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 (1892021734849908738, '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\":\"1892021734799577089\",\"equId\":\"1890217827130769409\",\"trialNum\":null,\"trialDate\":\"2025-02-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-02-19 09:21:48', 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 (1892021782325235713, '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\":\"1890217827189489665\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":\"GPA2002G005\",\"equName\":\"老化台\",\"modelNo\":\"/\",\"madeIn\":\"上海兰宝传感器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":\"2002-03-01\",\"status\":\"0\",\"location\":\"安徽兰宝\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":\"0009-01-01\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachId\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:22:00', 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 (1892021858367967233, '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\":\"1892021858305052674\",\"equId\":\"1890217827189489665\",\"trialNum\":null,\"trialDate\":\"2025-02-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-02-19 09:22:18', 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 (1892023859776589826, '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\":\"1892023859743035394\",\"equId\":\"1890217827130769409\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-02-19 09:30:04\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"df\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:30:15', 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 (1892023891556831234, '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\":\"1892023859743035394\",\"equId\":\"1890217827130769409\",\"beforeChange\":\"3\",\"afterChange\":\"1\",\"changeDate\":\"2025-02-19 09:30:04\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"df\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:30:23', 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 (1892027471445626882, '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\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"借用记录\",\"orderNum\":4,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:44:36', 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 (1892046376415268865, '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\":\"1890265974959865858\",\"menuName\":\"工具借用\",\"orderNum\":6,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:borrow\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 10:59:43', 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 (1892046983922454529, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890266675786121217\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1890265974959865859\",\"1892046376327188482\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327239\",\"1891716266575327238\",\"1891716266575327237\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 11:02:08', 111); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892082222724026369, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892082222648528897\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":null,\"status\":\"0\",\"borrowTime\":\"2025-02-19 13:22:04\",\"planReturnTime\":\"2025-02-19 13:22:08\",\"returnTime\":null,\"borrowReason\":\"adad\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 13:22:10', 53); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892095445904994305, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892095445770776577\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:14:34\",\"planReturnTime\":\"2025-02-19 14:14:38\",\"returnTime\":null,\"borrowReason\":\"地方规划局\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:14:42', 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 (1892099082144301058, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892099081863282689\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:29:04\",\"planReturnTime\":\"2025-02-19 14:29:07\",\"returnTime\":null,\"borrowReason\":\"sdd\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:29:09', 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 (1892099406645018626, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892099081863282689\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:29:04\",\"planReturnTime\":\"2025-02-19 14:29:07\",\"returnTime\":\"2025-02-19 14:30:25\",\"borrowReason\":\"sdd\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:30:27', 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 (1892100078366998529, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892100078236975105\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:32:57\",\"planReturnTime\":\"2025-02-19 14:33:03\",\"returnTime\":\"2025-02-19 14:33:05\",\"borrowReason\":\"yhujk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:33:07', 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 (1892101960426590210, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892101960258818049\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:40:28\",\"planReturnTime\":\"2025-02-19 14:40:32\",\"returnTime\":\"2025-02-19 14:40:34\",\"borrowReason\":\"fghjk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:40:36', 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 (1892102167998500865, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892101960258818049\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:40:28\",\"planReturnTime\":\"2025-02-19 14:40:32\",\"returnTime\":\"2025-02-19 14:40:34\",\"borrowReason\":\"fghjk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:41:25', 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 (1892103064728113154, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892103064619061250\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:44:49\",\"planReturnTime\":\"2025-02-19 14:44:57\",\"returnTime\":null,\"borrowReason\":\"fg345678\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:44: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 (1892103168805572610, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892103064619061250\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:44:49\",\"planReturnTime\":\"2025-02-19 14:44:57\",\"returnTime\":\"2025-02-19 14:45:22\",\"borrowReason\":\"fg345678\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:45:24', 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 (1892104974185009154, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892104974138871809\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:52:26\",\"planReturnTime\":\"2025-02-19 14:52:31\",\"returnTime\":null,\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:52: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 (1892105274010636290, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:53:46', 54); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892105514109374465, '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\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",1,\"1890266675786121217\",\"1889589456286871554\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1876074027672731650\",\"1888814115854311426\",\"1891410873344151554\",\"1890265974959865859\",\"1891320717983477763\",\"1891716266575327235\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:54:43', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892105619159912449, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1892105619105386498\",\"deptId\":100,\"userName\":\"sunjian\",\"nickName\":\"孙健\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[\"1889561357813903361\"],\"postIds\":[4],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:55:08', 100); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892108239014465538, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":null,\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:05:33', 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 (1892109166299680770, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":\"2025-02-19 15:09:08\",\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:09:14', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892109216522276865, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":\"2025-02-19 15:09:08\",\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:09:26', 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 (1892450248121548802, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",1040,\"1891716266575327237\",\"1891716266575327236\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:44:34', 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 (1892450438337429506, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892104974138871809\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:52:26\",\"planReturnTime\":\"2025-02-19 14:52:31\",\"returnTime\":\"2025-02-20 13:45:15\",\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:45:19', 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 (1892450543618654210, '000000', '借用记录', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892450543547351042\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-20 13:45:36\",\"planReturnTime\":\"2025-02-21 13:45:40\",\"returnTime\":null,\"borrowReason\":\"规划局看了看巨化股份代发给\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:45:44', 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 (1892450861341376514, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",500,108,1],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:47:00', 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 (1892451165403250690, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",108],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:48:13', 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 (1892452282916831233, '000000', '设备状态记录', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equStatu/1879078207500865538,1879335212484472833,1879350376495665154', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:52:39', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894221480950902786, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894221480594386945\",\"code\":\"BXD202502250002\",\"status\":\"0\",\"occTime\":\"2025-02-25 11:02:21\",\"reqTime\":\"2025-02-25 11:02:17\",\"reqDept\":100,\"reqUser\":\"1891772104536256514\",\"reqDesc\":\"吃饭v更换即可\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 11:02:49', 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 (1894227789863596033, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1889193482098917378,1889199026704601089,1889506260404666369,1889510345426092033,1889510920993652738,1889511033325502466,1889595038951645185,1889595916202909698,1889596045999841281,1889944971382734849', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 11:27:53', 113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894227926342053890, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894227926279139330\",\"code\":\"BXD202502250003\",\"status\":\"0\",\"occTime\":\"2025-02-25 11:28:08\",\"reqTime\":\"2025-02-25 11:28:06\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"fghjkl \",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827189489665\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 11:28:25', 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 (1894229385624334337, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894229384999383042\",\"code\":\"BXD202502250004\",\"status\":\"0\",\"occTime\":\"2025-02-25 11:33:59\",\"reqTime\":\"2025-02-25 11:33:58\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"fghjklmhgf\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 11:34:13', 117); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894252061596233729, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894252061508153345\",\"code\":\"BXD202502250005\",\"status\":\"0\",\"occTime\":\"2025-02-25 13:04:13\",\"reqTime\":\"2025-02-25 13:04:12\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"fghjklhghjkjhghj\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827218849793\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 13:04:20', 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 (1894252353393963009, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894252352911618049\",\"code\":\"BXD202502250006\",\"status\":\"0\",\"occTime\":\"2025-02-25 13:05:22\",\"reqTime\":\"2025-02-25 13:05:20\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"离开家呱唧呱唧\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827260792833\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 13:05:29', 114); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894279241290166274, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_repair_res\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:52:20', 425); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894280187638394882, '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\":\"repair_res_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:56:05', 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 (1894280336649433090, '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\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:56:41', 195); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894280386586816513, '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\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:56:53', 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 (1894280574617464833, '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-25 14:57:37\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1894279239826354178\",\"dataName\":\"master\",\"tableName\":\"eims_repair_res\",\"tableComment\":\"维修工单\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairRes\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairRes\",\"functionName\":\"维修工单\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:57:37\",\"columnId\":\"1894279240451305474\",\"tableId\":\"1894279239826354178\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:57:37\",\"columnId\":\"1894279240468082690\",\"tableId\":\"1894279239826354178\",\"columnName\":\"req_id\",\"columnComment\":\"报修单id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"reqId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"ReqId\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:57:37\",\"columnId\":\"1894279240497442817\",\"tableId\":\"1894279239826354178\",\"columnName\":\"res_user\",\"columnComment\":\"维修人\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"resUser\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:57:38', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894280595454767106, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:57:43', 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 (1894280952301957121, '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-25 14:59:07\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1894279239826354178\",\"dataName\":\"master\",\"tableName\":\"eims_repair_res\",\"tableComment\":\"维修工单\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairRes\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairRes\",\"functionName\":\"维修工单\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:59:07\",\"columnId\":\"1894279240451305474\",\"tableId\":\"1894279239826354178\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:59:07\",\"columnId\":\"1894279240468082690\",\"tableId\":\"1894279239826354178\",\"columnName\":\"req_id\",\"columnComment\":\"报修单id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"reqId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"ReqId\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-25 14:59:07\",\"columnId\":\"1894279240497442817\",\"tableId\":\"1894279239826354178\",\"columnName\":\"res_user\",\"columnComment\":\"维修人\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"resUser\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 14:59:08', 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 (1894280986238070785, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1894279239826354178\"}', '', 0, '', '2025-02-25 14:59:16', 672); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894289159946711042, '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\":\"1894280983377555458\",\"parentId\":\"1888814115854311426\",\"menuName\":\"维修工单\",\"orderNum\":2,\"path\":\"repairRes\",\"component\":\"eims/repair-res/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairRes:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-25 15:31:45', 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 (1894560946513231874, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894560946093801474\",\"reqId\":\"1894252352911618049\",\"resCode\":\"WXD202502250006\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因分析\",\"resHandle\":\"处理措施\",\"resPrevent\":\"预防措施\",\"status\":\"0\",\"startTime\":\"2025-02-26 09:31:15\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250006\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 09:31:44', 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 (1894591446476795905, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1,1894560946093801474', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 11:32:55', 182); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894591555092492290, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894591554798891010\",\"reqId\":\"1894252352911618049\",\"resCode\":\"WXD202502250006\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因分析\",\"resHandle\":\"处理措施\",\"resPrevent\":\"预防措施\",\"status\":\"0\",\"startTime\":\"2025-02-26 10:15:35\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250006\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 11:33:21', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894592152181026818, '000000', '维修工单', 5, 'org.dromara.eims.controller.EimsRepairResController.export()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"resCode\":null,\"resUser\":null,\"resDept\":null,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":null}', '', 0, '', '2025-02-26 11:35:44', 5349); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894593723908370433, '000000', '维修工单', 5, 'org.dromara.eims.controller.EimsRepairResController.export()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"resCode\":null,\"resUser\":null,\"resDept\":null,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":null}', '', 1, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'res.create_time\' in \'order clause\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairResMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id,req_id,res_code,res_user,res_dept,res_reason,res_handle,res_prevent,status,start_time,end_time,use_fixture,use_parts,remark,create_dept,create_by,create_time,update_by,update_time FROM eims_repair_res ORDER BY res.create_time DESC\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'res.create_time\' in \'order clause\'\n; bad SQL grammar []', '2025-02-26 11:41:58', 826); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894594817149612033, '000000', '维修工单', 5, 'org.dromara.eims.controller.EimsRepairResController.export()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"resCode\":null,\"resUser\":null,\"resDept\":null,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":null}', '', 0, '', '2025-02-26 11:46:19', 78543); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894616047642718209, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894616047546249217\",\"code\":\"BXD202502260001\",\"status\":\"0\",\"occTime\":\"2025-02-26 13:10:32\",\"reqTime\":\"2025-02-26 13:10:13\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"热敷贴\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827218849793\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:10:41', 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 (1894616212772466690, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894616212533391362\",\"reqId\":\"1894616047546249217\",\"resCode\":\"WXD202502260001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因原因原因原因原因原因原因原因原因原因\",\"resHandle\":\"处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施\",\"resPrevent\":\"预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施\",\"status\":\"0\",\"startTime\":\"2025-02-26 13:10:49\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:11:20', 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 (1894616458885836801, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894616212533391362\",\"reqId\":\"1894616047546249217\",\"resCode\":\"WXD202502260001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因原因原因原因原因原因原因原因原因原因\",\"resHandle\":\"处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施\",\"resPrevent\":\"预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施\",\"status\":\"1\",\"startTime\":\"2025-02-26 13:10:49\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:12:19', 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 (1894619589038374914, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894616212533391362\",\"reqId\":\"1894616047546249217\",\"resCode\":\"WXD202502260001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因原因原因原因原因原因原因原因原因原因\",\"resHandle\":\"处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施处理措施\",\"resPrevent\":\"预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施预防措施\",\"status\":\"1\",\"startTime\":\"2025-02-26 13:10:49\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:24:45', 157); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894619636308180993, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894591554798891010\",\"reqId\":\"1894252352911618049\",\"resCode\":\"WXD202502250006\",\"resUser\":1,\"resDept\":103,\"resReason\":\"原因分析\",\"resHandle\":\"处理措施\",\"resPrevent\":\"预防措施\",\"status\":\"1\",\"startTime\":\"2025-02-26 10:15:35\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250006\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:24:56', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894619785080143873, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894619784979480577\",\"reqId\":\"1894252061508153345\",\"resCode\":\"WXD202502250005\",\"resUser\":1,\"resDept\":103,\"resReason\":\"fghjk\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"ghjkl\",\"status\":\"0\",\"startTime\":\"2025-02-26 13:24:37\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250005\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:25:32', 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 (1894620769005125633, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894619784979480577\",\"reqId\":\"1894252061508153345\",\"resCode\":\"WXD202502250005\",\"resUser\":1,\"resDept\":103,\"resReason\":\"fghjk\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"ghjkl\",\"status\":\"1\",\"startTime\":\"2025-02-26 13:24:37\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250005\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:29:26', 130); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894621019623178242, '000000', '故障报修', 2, 'org.dromara.eims.controller.EimsRepairReqController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894252352911618049\",\"code\":\"BXD202502250006\",\"status\":\"0\",\"occTime\":\"2025-02-25 13:05:22\",\"reqTime\":\"2025-02-25 13:05:20\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"离开家呱唧呱唧\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827260792833\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 13:30:26', 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 (1894621397106343938, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":\"1894252352911618049\",\"resCode\":\"WXD202502250006\",\"resUser\":1,\"resDept\":103,\"resReason\":\"cvbnjm\",\"resHandle\":\"fghjkl\",\"resPrevent\":\"fdf\",\"status\":\"0\",\"startTime\":\"2025-02-26 13:29:13\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502250006\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1894252352911618049\' for key \'eims_repair_res.req_id\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairResMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairResMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_res ( id, req_id, res_code, res_user, res_dept, res_reason, res_handle, res_prevent, status, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1894252352911618049\' for key \'eims_repair_res.req_id\'\n; Duplicate entry \'1894252352911618049\' for key \'eims_repair_res.req_id\'', '2025-02-26 13:31:56', 446); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894635190078562306, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":null,\"dataScope\":\"5\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 14:26:45', 131); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894635276611248129, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":null,\"dataScope\":\"5\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 14:27:05', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894645783820902402, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":\"1889581563890200577\",\"roleId\":\"1889561357813903361\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:08:50', 49); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894645810815442945, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889561357813903361\",\"userIds\":\"1889581563890200577\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:08:57', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894650466761326594, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":null,\"dataScope\":\"3\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:27:27', 150); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894650754255699970, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":null,\"dataScope\":\"4\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:28:35', 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 (1894650848971472897, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":null,\"dataScope\":\"1\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:28:58', 71); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894650873264881665, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.dataScope()', 'PUT', 1, 'admin', '研发部门', '/system/role/dataScope', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":null,\"dataScope\":\"1\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":true,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":[],\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 15:29:04', 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 (1894661735354605569, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_repair_record\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:12:13', 377); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894661999025332225, '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-26 16:13:16\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1894661734213754881\",\"dataName\":\"master\",\"tableName\":\"eims_repair_record\",\"tableComment\":\"维修记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairRecord\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairRecord\",\"functionName\":\"维修记录\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-26 16:13:16\",\"columnId\":\"1894661734645768193\",\"tableId\":\"1894661734213754881\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-26 16:13:16\",\"columnId\":\"1894661734696099841\",\"tableId\":\"1894661734213754881\",\"columnName\":\"req_id\",\"columnComment\":\"报修单id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"reqId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"ReqId\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-26 16:13:16\",\"columnId\":\"1894661734708682753\",\"tableId\":\"1894661734213754881\",\"columnName\":\"res_id\",\"columnComment\":\"维修单id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:13:16', 146); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894662035415113730, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1894661734213754881\"}', '', 0, '', '2025-02-26 16:13:25', 553); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894662795414609921, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1894662033104052225', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-02-26 16:16:26', 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 (1894665850403037186, '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\":\"repair_record_handle\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:28: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 (1894665915599298561, '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\":\"repair_record_handle\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:28:50', 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 (1894666030724554754, '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\":\"repair_record_handle\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:29:18', 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 (1894666074420813825, '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\":\"repair_record_handle\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:29:28', 113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894668997968248834, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894668997439766529\",\"code\":\"BXD202502260002\",\"status\":\"0\",\"occTime\":\"2025-02-26 16:40:57\",\"reqTime\":\"2025-02-26 15:09:06\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"规划局快乐客家话\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827344678913\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:41:05', 104); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894670935577300993, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894670935103344642\",\"code\":\"BXD202502260003\",\"status\":\"0\",\"occTime\":\"2025-02-26 16:48:41\",\"reqTime\":\"2025-02-26 15:09:06\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"手动\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827462119426\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:48:47', 99); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894671041479282689, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894671040636227586\",\"reqId\":\"1894670935103344642\",\"resCode\":\"WXD202502260003\",\"resUser\":1,\"resDept\":103,\"resReason\":\"法国寒假凯乐科技会更好\",\"resHandle\":\"立刻就会搞不好就开了\",\"resPrevent\":\"离开交换机客户\",\"status\":\"0\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260003\",\"reqUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:49:12', 207); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894671264490426369, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894671040636227586\",\"reqId\":\"1894670935103344642\",\"resCode\":\"WXD202502260003\",\"resUser\":1,\"resDept\":103,\"resReason\":\"法国寒假凯乐科技会更好\",\"resHandle\":\"立刻就会搞不好就开了\",\"resPrevent\":\"离开交换机客户\",\"status\":\"1\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260003\",\"reqUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:50:05', 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 (1894672535607803906, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894672535112876033\",\"code\":\"BXD202502260004\",\"status\":\"0\",\"occTime\":\"2025-02-26 16:55:02\",\"reqTime\":\"2025-02-26 15:09:06\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"fghjkjhg\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:55:08', 104); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894672619925897217, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894672619015733249\",\"reqId\":\"1894672535112876033\",\"resCode\":\"WXD202502260004\",\"resUser\":1,\"resDept\":103,\"resReason\":\"ugfdfghjkl\",\"resHandle\":\"kfghjkl;\",\"resPrevent\":\"jhvcghjkl\",\"status\":\"0\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260004\",\"reqUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 16:55:29', 229); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894673854796087298, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894673854104027138\",\"code\":\"BXD202502260005\",\"status\":\"0\",\"occTime\":\"2025-02-26 17:00:16\",\"reqTime\":\"2025-02-26 15:09:06\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"fghjkl\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827189489665\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 17:00:23', 171); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894673933384761346, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894673932533317633\",\"reqId\":\"1894673854104027138\",\"resCode\":\"WXD202502260005\",\"resUser\":1,\"resDept\":103,\"resReason\":\"vcvbnm,.vg\",\"resHandle\":\"vkjbnvv\",\"resPrevent\":\"ghg\",\"status\":\"0\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260005\",\"reqUser\":null}', '', 1, 'Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-02-26 17:00:42', 215); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894674645346893826, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894674018642378753\",\"reqId\":\"1894673854104027138\",\"resCode\":\"WXD202502260005\",\"resUser\":1,\"resDept\":103,\"resReason\":\"vcvbnm,.vg\",\"resHandle\":\"vkjbnvv\",\"resPrevent\":\"ghg\",\"status\":\"0\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260005\",\"reqUser\":null}', '', 1, 'Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-02-26 17:03:31', 149415); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894674649822216193, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894674649046269953\",\"reqId\":\"1894673854104027138\",\"resCode\":\"WXD202502260005\",\"resUser\":1,\"resDept\":103,\"resReason\":\"vcvbnm,.vg\",\"resHandle\":\"vkjbnvv\",\"resPrevent\":\"ghg\",\"status\":\"0\",\"startTime\":\"2025-02-26 16:48:56\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502260005\",\"reqUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-26 17:03:33', 206); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894912845168459778, '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\":\"1888837193552453634\",\"menuName\":\"派工\",\"orderNum\":6,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairReq:sned\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 08:50:03', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894919749647167490, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1894674649046269953,1894672619015733249,1894671040636227586,1894619784979480577,1894616212533391362,1894591554798891010', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:17:29', 165); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894920400657674241, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1894673854104027138,1894672535112876033,1894670935103344642,1894668997439766529,1894616047546249217,1894252352911618049,1894252061508153345,1894229384999383042,1894227926279139330,1894221480594386945', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:20:04', 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 (1894920416977711106, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1891772592350588929', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:20:08', 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 (1894920505460748289, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894920505267810306\",\"code\":\"BXD202502270001\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:20:22\",\"reqTime\":\"2025-02-27 09:17:22\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"xcfghjkl\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:20:29', 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 (1894920587136430081, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894920586226266114\",\"reqId\":\"1894920505267810306\",\"reqUser\":null,\"reqDept\":null,\"resCode\":\"WXD202502270001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"cvbnm,.\",\"resHandle\":\"fjkl;\",\"resPrevent\":\"vbnml;\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:17:22\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:20:49', 248); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894921450366136322, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1894920586226266114', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:24:14', 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 (1894922078576406530, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1894920505267810306', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:26:44', 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 (1894922204439080961, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894922204069982209\",\"code\":\"BXD202502270002\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:26:54\",\"reqTime\":\"2025-02-27 09:17:22\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"df\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827189489665\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:27:14', 89); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894922351420076034, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894922351000645633\",\"reqId\":\"1894922204069982209\",\"reqUser\":null,\"reqDept\":null,\"resCode\":\"WXD202502270002\",\"resUser\":1,\"resDept\":103,\"resReason\":\"ghghj\",\"resHandle\":\"hjhjh\",\"resPrevent\":\"jhjhj\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:17:22\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270002\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:27:49', 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 (1894922880535719938, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1894922351000645633', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:29:55', 115); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894922965696868353, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1894922204069982209', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:30:16', 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 (1894923046055538690, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923045896155137\",\"code\":\"BXD202502270003\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:30:29\",\"reqTime\":\"2025-02-27 09:29:41\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"地方规划局快乐;\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827218849793\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:30:35', 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 (1894923122605780993, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923122282819586\",\"reqId\":\"1894923045896155137\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502270003\",\"resUser\":1,\"resDept\":103,\"resReason\":\"规划局快乐;\",\"resHandle\":\"客家话发给会尽快\",\"resPrevent\":\"就还好见客户\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:29:51\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:30:53', 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 (1894923480329580545, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923479553634306\",\"code\":\"BXD202502270004\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:31:58\",\"reqTime\":\"2025-02-27 09:29:41\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"规划局快乐;\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:32:18', 188); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894923587422744577, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923587284332546\",\"code\":\"BXD202502270005\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:32:34\",\"reqTime\":\"2025-02-27 09:29:41\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"不能不能\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891365808617848833\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:32:44', 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 (1894923713528688642, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923713448996865\",\"code\":\"BXD202502270006\",\"status\":\"0\",\"occTime\":\"2025-02-27 09:33:03\",\"reqTime\":\"2025-02-27 09:29:41\",\"reqDept\":100,\"reqUser\":\"1892105619105386498\",\"reqDesc\":\"暖风机能否开不开\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827248209921\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:33:14', 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 (1894923889802702849, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889562679283904514\",\"userIds\":\"1891772104536256514\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:33:56', 191); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894923984862408705, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894923984627527682\",\"reqId\":\"1894923713448996865\",\"reqUser\":\"1892105619105386498\",\"reqDept\":100,\"resCode\":\"WXD202502270006\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"发规划局快乐;\",\"resHandle\":\"fghjklkjhgf\",\"resPrevent\":\"规划局快乐巨化股份固化剂\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:29:51\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270006\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:34:19', 57); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894924063727906818, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894924063191035906\",\"reqId\":\"1894923587284332546\",\"reqUser\":\"1889581563890200577\",\"reqDept\":100,\"resCode\":\"WXD202502270005\",\"resUser\":\"1891772104536256514\",\"resDept\":100,\"resReason\":\"返回即可铝合金框\",\"resHandle\":\"空间规划客家话\",\"resPrevent\":\"给哦会更好\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:29:51\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270005\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:34:37', 129); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894924195085119489, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894924194900570113\",\"reqId\":\"1894923479553634306\",\"reqUser\":\"1889581563890200577\",\"reqDept\":100,\"resCode\":\"WXD202502270004\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"规划局快乐;‘立刻就会\",\"resHandle\":\"规划局快乐;’\",\"resPrevent\":\"姑姑机票\",\"status\":\"0\",\"startTime\":\"2025-02-27 09:29:51\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270004\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 09:35:09', 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 (1894936949930029057, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894936949628039170\",\"code\":\"BXD202502270007\",\"status\":\"0\",\"occTime\":\"2025-02-27 10:25:42\",\"reqTime\":\"2025-02-27 10:25:02\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"一\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827248209921\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 10:25:50', 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 (1894937472418672642, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894937472083128322\",\"reqId\":\"1894936949628039170\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502270007\",\"resUser\":1,\"resDept\":103,\"resReason\":\"宝贝你们,。,vcbnm\",\"resHandle\":\"gklb\",\"resPrevent\":\"开个房更换即可\",\"status\":\"0\",\"startTime\":\"2025-02-27 10:25:14\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"reqCode\":\"BXD202502270007\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 10:27:54', 54002); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894944845489205249, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894944845187215362\",\"code\":\"BXD202502270008\",\"status\":\"0\",\"occTime\":\"2025-02-27 10:57:06\",\"reqTime\":\"2025-02-27 10:56:45\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"电饭锅会尽快\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827260792833\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 10:57:12', 72); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894948211820777474, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894948209450995713\",\"code\":\"BXD202502270011\",\"status\":\"0\",\"occTime\":\"2025-02-27 11:10:28\",\"reqTime\":\"2025-02-27 11:10:05\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"dfdd\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827189489665\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 11:10:35', 553); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894948289943883777, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/add', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894948288719147010\",\"reqId\":\"1894944845187215362\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502270008\",\"resUser\":1,\"resDept\":103,\"resReason\":\"fgg\",\"resHandle\":\"ghfgjhg\",\"resPrevent\":\"ghg\",\"status\":\"0\",\"startTime\":\"2025-02-27 11:10:37\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqCode\":null,\"reqCode\":\"BXD202502270008\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 11:10:53', 318); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894951612046577666, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894948209450995713\",\"reqCode\":null}', '', 1, 'Cannot invoke \"java.lang.Boolean.booleanValue()\" because the return value of \"org.dromara.eims.service.IEimsRepairResService.insertBatchByBo(org.dromara.eims.domain.bo.EimsRepairResBo)\" is null', '2025-02-27 11:24:05', 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 (1894956750060552193, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894948209450995713\",\"reqCode\":null}', '{\"code\":500,\"msg\":\"操作失败\",\"data\":null}', 0, '', '2025-02-27 11:44:30', 251); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894957590167060481, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894957589038792706\",\"code\":\"BXD202502270012\",\"status\":\"0\",\"occTime\":\"2025-02-27 11:47:43\",\"reqTime\":\"2025-02-27 11:44:10\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"defghjk\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 11:47:51', 412); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894957673482715137, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894957673373663233\",\"code\":\"BXD202502270013\",\"status\":\"0\",\"occTime\":\"2025-02-27 11:48:03\",\"reqTime\":\"2025-02-27 11:44:10\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"规划局快乐\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891365808617848833\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 11:48:11', 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 (1894957751693901825, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894957673373663233,1894957589038792706\",\"reqCode\":null}', '{\"code\":500,\"msg\":\"操作失败\",\"data\":null}', 0, '', '2025-02-27 11:48:29', 281); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894979787371827202, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1894957750599188482,1894957751047979010,1894956749020364801', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 13:16:03', 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 (1894980130147127297, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894957673373663233,1894957589038792706\",\"reqCode\":null}', '', 1, 'Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-02-27 13:17:25', 340); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894981547511500802, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894957673373663233,1894957589038792706\",\"reqCode\":null}', '', 1, 'Cannot invoke \"org.dromara.eims.domain.EimsRepairRecord.setResId(java.lang.Long)\" because \"one\" is null', '2025-02-27 13:23:03', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894981568453660674, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894957673373663233,1894957589038792706\",\"reqCode\":null}', '', 1, 'Cannot invoke \"org.dromara.eims.domain.EimsRepairRecord.setResId(java.lang.Long)\" because \"one\" is null', '2025-02-27 13:23:08', 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 (1894981856635899906, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1894957673373663233,1894957589038792706\",\"reqCode\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 13:24:16', 557); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894982056007946242, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894981855109173250\",\"reqId\":\"1894957673373663233\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502270013\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"1\",\"startTime\":\"2025-02-27 13:24:16\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502270013\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 13:25:04', 98); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894982106968739841, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1894981855109173250', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 13:25:16', 34); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894993937456099329, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1894993936386551809\",\"code\":\"BXD202502270015\",\"status\":\"0\",\"occTime\":\"2025-02-27 14:12:09\",\"reqTime\":\"2025-02-27 11:44:10\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"fbnm \",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:12:17', 176); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894998126026485762, '000000', '故障报修', 5, 'org.dromara.eims.controller.EimsRepairReqController.export()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":null,\"status\":null,\"occTime\":null,\"reqTime\":null,\"reqDept\":null,\"reqUser\":null,\"reqDesc\":null,\"urgencyLevel\":null,\"faultPicture\":null,\"reqType\":null,\"equId\":null,\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":null,\"remark\":null}', '', 0, '', '2025-02-27 14:28:55', 7126); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895003451010027521, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895003449802067969\",\"code\":\"BXD202502270016\",\"status\":\"0\",\"occTime\":\"2025-02-27 14:49:57\",\"reqTime\":\"2025-02-27 14:31:09\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"sxdcfghjk\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:50:05', 221); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895003559046909954, '000000', '故障报修', 2, 'org.dromara.eims.controller.EimsRepairReqController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895003449802067969\",\"code\":\"BXD202502270016\",\"status\":\"0\",\"occTime\":\"2025-02-27 14:49:57\",\"reqTime\":\"2025-02-27 14:31:09\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"sxdcfghjk\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:50:31', 125); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895003750885986305, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895003750814683137\",\"code\":\"BXD202502270017\",\"status\":\"0\",\"occTime\":\"2025-02-27 14:51:04\",\"reqTime\":\"2025-02-27 14:31:09\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"ef\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891360483990941697\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:51:16', 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 (1895003960718626818, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1895003750814683137,1895003449802067969\",\"reqCode\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:52:06', 313); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895004713197735938, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",108,\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1894280983377555458\",\"1894280983377555459\",\"1894280983377555460\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:55:06', 315); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895004771028799489, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,\"1888837193552453634\",1,\"1888814115854311426\",\"1889589456286871554\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894280983377555458\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-27 14:55:20', 383); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285068916035585, '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\":\"1888854996997222402\",\"dictSort\":2,\"dictLabel\":\"维修中\",\"dictValue\":\"2\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":500,\"msg\":\"修改字典数据\'2\'失败,字典键值已存在\",\"data\":null}', 0, '', '2025-02-28 09:29:08', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285093469491202, '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\":\"1888855058393444354\",\"dictSort\":3,\"dictLabel\":\"已完成\",\"dictValue\":\"3\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:29:14', 68); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285116999536642, '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\":\"1888854996997222402\",\"dictSort\":2,\"dictLabel\":\"维修中\",\"dictValue\":\"2\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:29:19', 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 (1895285197408538626, '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\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:29:38', 34); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285454775226369, '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\":\"1894280386519707649\",\"dictSort\":2,\"dictLabel\":\"已完成\",\"dictValue\":\"2\",\"dictType\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:30:40', 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 (1895285486479970305, '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\":\"1894280386519707649\",\"dictSort\":3,\"dictLabel\":\"已完成\",\"dictValue\":\"3\",\"dictType\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:30:47', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285510064541697, '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\":\"1894280336183865346\",\"dictSort\":2,\"dictLabel\":\"维修中\",\"dictValue\":\"2\",\"dictType\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:30:53', 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 (1895285559762849794, '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\":\"repair_res_status\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:31:05', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285596773388290, '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\":\"1895285559674769409\",\"dictSort\":1,\"dictLabel\":\"已接单\",\"dictValue\":\"1\",\"dictType\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:31:14', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895285637374251009, '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\":\"1894280336183865346\",\"dictSort\":2,\"dictLabel\":\"维修中\",\"dictValue\":\"2\",\"dictType\":\"repair_res_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:31:23', 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 (1895286178049396737, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:33:32', 2); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895287301095264257, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1895003750814683137,1895003449802067969,1894993936386551809,1894957673373663233,1894957589038792706', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:38:00', 110); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895287319931883521, '000000', '维修工单', 3, 'org.dromara.eims.controller.EimsRepairResController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairRes/1895003959586164738,1895003960391471106,1894981855792844802', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:38:04', 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 (1895287406640730113, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895287406519095297\",\"code\":\"BXD202502280001\",\"status\":\"0\",\"occTime\":\"2025-02-28 09:38:19\",\"reqTime\":\"2025-02-28 09:37:48\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"法国灰\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:38:25', 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 (1895291036680818689, '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\":\"1894666073988800514\",\"dictSort\":4,\"dictLabel\":\"完成\",\"dictValue\":\"4\",\"dictType\":\"repair_record_handle\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:52:51', 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 (1895291085951307777, '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\":\"repair_record_handle\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 09:53:02', 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 (1895296245469503490, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/add', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895296244676780034\",\"reqId\":\"1895287406519095297\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"ghjkl\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"vbnm,./\",\"status\":\"1\",\"startTime\":\"2025-02-28 10:13:26\",\"endTime\":\"2025-02-28 10:13:28\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:13:32', 179); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895301272128892930, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895296244676780034\",\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":null,\"resDept\":null,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"2\",\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":null}', '', 1, 'Cannot invoke \"org.dromara.eims.domain.vo.EimsRepairReqVo.setStatus(String)\" because \"reqVo\" is null', '2025-02-28 10:33:31', 69); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895301666598989825, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895296244676780034\",\"reqId\":\"1895287406519095297\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"ghjkl\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"vbnm,./\",\"status\":\"2\",\"startTime\":\"2025-02-28 10:13:26\",\"endTime\":\"2025-02-28 10:13:28\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:35:05', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895302534048165889, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895296244676780034\",\"reqId\":\"1895287406519095297\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280001\",\"resUser\":1,\"resDept\":103,\"resReason\":\"ghjkl\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"vbnm,./\",\"status\":\"3\",\"startTime\":\"2025-02-28 10:35:05\",\"endTime\":\"2025-02-28 10:13:28\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:38:32', 111); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895305451115294721, '000000', '维修工单', 1, 'org.dromara.eims.controller.EimsRepairResController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/add', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895305450813304833\",\"reqId\":\"1895287406519095298\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280002\",\"resUser\":1,\"resDept\":103,\"resReason\":\"fghjkl;\",\"resHandle\":\"ghjkl;\",\"resPrevent\":\"ghjkl;\",\"status\":\"1\",\"startTime\":\"2025-02-28 10:50:03\",\"endTime\":\"2025-02-28 10:50:05\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280002\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:50:07', 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 (1895307051900776450, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895305450813304833\",\"reqId\":\"1895287406519095298\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280002\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"fghjkl;\",\"resHandle\":\"ghjkl;\",\"resPrevent\":\"ghjkl;\",\"status\":\"1\",\"startTime\":\"2025-02-28 10:50:03\",\"endTime\":\"2025-02-28 10:50:05\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280002\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:56:29', 129); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895307099963305985, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895296244676780034\",\"reqId\":\"1895287406519095297\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280001\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"ghjkl\",\"resHandle\":\"ghjkl\",\"resPrevent\":\"vbnm,./\",\"status\":\"3\",\"startTime\":\"2025-02-28 10:35:05\",\"endTime\":\"2025-02-28 10:38:32\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 10:56:40', 89); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895349239837798402, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"BXD202502280002\",\"status\":\"0\",\"occTime\":\"2025-02-28 13:44:00\",\"reqTime\":\"2025-02-28 13:03:43\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"地方规划局快乐\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891365808617848833\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'BXD202502280002\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fixture_id, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'BXD202502280002\' for key \'eims_repair_req.code\'\n; Duplicate entry \'BXD202502280002\' for key \'eims_repair_req.code\'', '2025-02-28 13:44:07', 612); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895349327226122241, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349326689251329\",\"code\":\"BXD202502280003\",\"status\":\"0\",\"occTime\":\"2025-02-28 13:44:00\",\"reqTime\":\"2025-02-28 13:03:43\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"地方规划局快乐\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"fixtureId\":\"1891365808617848833\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:44:28', 129); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895349490984333313, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349490514571266\",\"code\":\"BXD202502280004\",\"status\":\"0\",\"occTime\":\"2025-02-28 13:44:59\",\"reqTime\":\"2025-02-28 13:03:43\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"规划局快乐\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827189489665\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:45:07', 113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895349524001894401, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"batchReqIds\":\"1895349326689251329,1895349490514571266\",\"reqCode\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:45:15', 296); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895349782358437889, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"1\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:46:17', 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 (1895349888889565186, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"1\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:46:42', 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 (1895351296586067970, '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\":\"1894280983377555458\",\"parentId\":\"1888814115854311426\",\"menuName\":\"维修工单\",\"orderNum\":2,\"path\":\"repairRes\",\"component\":\"eims/repair-res/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"perms\":\"eims:repairRes:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:52:18', 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 (1895351326055247874, '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\":\"1894280983377555458\",\"parentId\":\"1888814115854311426\",\"menuName\":\"维修工单\",\"orderNum\":2,\"path\":\"repairRes\",\"component\":\"eims/repair-res/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairRes:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:52:25', 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 (1895351392878899202, '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\":\"1894662033104052225\",\"parentId\":\"1888814115854311426\",\"menuName\":\"维修记录\",\"orderNum\":3,\"path\":\"repairRecord\",\"component\":\"eims/repair-record/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"perms\":\"eims:repairRecord:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:52:41', 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 (1895351459589304321, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,\"1888837193552453634\",1,\"1888814115854311426\",\"1889589456286871554\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\",\"1894280983377555458\",\"1894662033104052225\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:52:57', 210); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895351506376765442, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",108,\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1894280983377555458\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1894280983377555459\",\"1894280983377555460\",\"1894662033104052225\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:53:08', 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 (1895351788196245505, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"1\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:54:15', 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 (1895352950001676289, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"1\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 13:58:52', 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 (1895353358552051714, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"2\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:00:29', 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 (1895353562537832449, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895349522965901314\",\"reqId\":\"1895349326689251329\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280003\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"CGHJKL\",\"resHandle\":\"FGHJKL\",\"resPrevent\":\"FGHJKL\",\"status\":\"3\",\"startTime\":\"2025-02-28 13:46:11\",\"endTime\":\"2025-02-28 14:01:12\",\"useFixture\":null,\"useParts\":null,\"remark\":\"方法\",\"batchReqIds\":null,\"reqCode\":\"BXD202502280003\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:01:18', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895363373803417602, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_repair_fb\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:40:17', 471); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895364553849876482, '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-28 14:44:58\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1895363373023277058\",\"dataName\":\"master\",\"tableName\":\"eims_repair_fb\",\"tableComment\":\"维修评价\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairFb\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairFb\",\"functionName\":\"维修评价\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:44:58\",\"columnId\":\"1895363373413347329\",\"tableId\":\"1895363373023277058\",\"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,\"list\":true,\"edit\":true,\"pk\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:44:58\",\"columnId\":\"1895363373438513154\",\"tableId\":\"1895363373023277058\",\"columnName\":\"res_id\",\"columnComment\":\"维修工单id\\n\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"resId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"edit\":true,\"pk\":false,\"capJavaField\":\"ResId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:44:58\",\"columnId\":\"1895363373451096066\",\"tableId\":\"1895363373023277058\",\"columnName\":\"fb_result\",\"columnComment\":\"反馈结果\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fbRe', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:44:58', 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 (1895364625597640706, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.synchDb()', 'GET', 1, 'admin', '研发部门', '/tool/gen/synchDb/1895363373023277058', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:45:16', 247); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895364862705840130, '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-28 14:46:12\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1895363373023277058\",\"dataName\":\"master\",\"tableName\":\"eims_repair_fb\",\"tableComment\":\"维修评价\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairFb\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairFb\",\"functionName\":\"维修评价\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:46:12\",\"columnId\":\"1895363373413347329\",\"tableId\":\"1895363373023277058\",\"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,\"list\":true,\"edit\":true,\"pk\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:46:12\",\"columnId\":\"1895363373438513154\",\"tableId\":\"1895363373023277058\",\"columnName\":\"res_id\",\"columnComment\":\"维修工单id\\n\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"resId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"edit\":true,\"pk\":false,\"capJavaField\":\"ResId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-28 14:46:12\",\"columnId\":\"1895363373451096066\",\"tableId\":\"1895363373023277058\",\"columnName\":\"fb_result\",\"columnComment\":\"反馈结果\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fbRe', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 14:46:12', 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 (1895366086100430850, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1895363373023277058\"}', '', 0, '', '2025-02-28 14:51:04', 1574); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895372785235091457, '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\":\"1895366080371011586\",\"parentId\":\"1888814115854311426\",\"menuName\":\"维修评价\",\"orderNum\":4,\"path\":\"repairFb\",\"component\":\"eims/repair-fb/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairFb:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 15:17:41', 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 (1895374505507905538, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895374505092669442\",\"resId\":null,\"fbResult\":\"dd\",\"fbUser\":null,\"fbDept\":null,\"fbTime\":null,\"repairTimeliness\":null,\"serviceAttitude\":null,\"repairSs\":null,\"repairSatisfaction\":null,\"suggestions\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 15:24:31', 151); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895397942032293889, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895397941306679297\",\"resId\":null,\"resCode\":\"WXD202502280003\",\"fbResult\":\"规划局快乐\",\"fbUser\":null,\"fbDept\":null,\"fbTime\":null,\"repairTimeliness\":\"3\",\"serviceAttitude\":\"4\",\"repairSs\":\"2\",\"repairSatisfaction\":\"4\",\"suggestions\":\"你聪明\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-28 16:57:39', 117); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896384794215821313, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896384793569898497\",\"resId\":\"1895349522965901314\",\"resCode\":\"WXD202502280003\",\"fbResult\":\"测试\",\"fbUser\":null,\"fbDept\":null,\"fbTime\":\"2025-03-03 10:19:01\",\"repairTimeliness\":\"5\",\"serviceAttitude\":\"5\",\"repairSs\":\"5\",\"repairSatisfaction\":\"5\",\"suggestions\":\"d\'d\'s\'d\",\"remark\":null}', '', 1, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'fb_id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairResMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id,req_id,req_user,req_dept,res_code,res_user,res_dept,res_reason,res_handle,res_prevent,status,start_time,end_time,use_fixture,use_parts,remark,fb_id,create_dept,create_by,create_time,update_by,update_time FROM eims_repair_res WHERE id=?\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'fb_id\' in \'field list\'\n; bad SQL grammar []', '2025-03-03 10:19:03', 104); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896385044921954306, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896385043844018178\",\"resId\":\"1895349522965901314\",\"resCode\":\"WXD202502280003\",\"fbResult\":\"测试\",\"fbUser\":null,\"fbDept\":null,\"fbTime\":\"2025-03-03 10:19:01\",\"repairTimeliness\":\"5\",\"serviceAttitude\":\"5\",\"repairSs\":\"5\",\"repairSatisfaction\":\"5\",\"suggestions\":\"d\'d\'s\'d\",\"remark\":null}', '', 1, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'fb_id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairResMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id,req_id,req_user,req_dept,res_code,res_user,res_dept,res_reason,res_handle,res_prevent,status,start_time,end_time,use_fixture,use_parts,remark,fb_id,create_dept,create_by,create_time,update_by,update_time FROM eims_repair_res WHERE id=?\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'fb_id\' in \'field list\'\n; bad SQL grammar []', '2025-03-03 10:20:02', 249); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896386025516675074, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896386025134993409\",\"resId\":\"1895349522965901314\",\"resCode\":\"WXD202502280003\",\"fbResult\":\"测试\",\"fbUser\":null,\"fbDept\":null,\"fbTime\":\"2025-03-03 10:19:01\",\"repairTimeliness\":\"5\",\"serviceAttitude\":\"5\",\"repairSs\":\"5\",\"repairSatisfaction\":\"5\",\"suggestions\":\"d\'d\'s\'d\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-03 10:23:56', 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 (1896397533856378882, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"resId\":\"1895349522965901314\",\"resCode\":\"WXD202502280003\",\"fbResult\":\"mkb\",\"fbUser\":1,\"fbDept\":103,\"fbTime\":null,\"repairTimeliness\":\"5\",\"serviceAttitude\":\"5\",\"repairSs\":\"5\",\"repairSatisfaction\":\"5\",\"suggestions\":null,\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1895349522965901314\' for key \'eims_repair_fb.res_id_uni\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairFbMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairFbMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_fb ( id, res_id, res_code, fb_result, fb_user, fb_dept, repair_timeliness, service_attitude, repair_ss, repair_satisfaction, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1895349522965901314\' for key \'eims_repair_fb.res_id_uni\'\n; Duplicate entry \'1895349522965901314\' for key \'eims_repair_fb.res_id_uni\'', '2025-03-03 11:09:40', 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 (1896437434597486594, '000000', '维修评价', 1, 'org.dromara.eims.controller.EimsRepairFbController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896437434475851778\",\"resId\":\"1895296244676780034\",\"resCode\":\"WXD202502280001\",\"fbResult\":\"规划局快乐\",\"fbUser\":1,\"fbDept\":103,\"fbTime\":\"2025-03-03 13:48:11\",\"repairTimeliness\":\"3\",\"serviceAttitude\":\"1\",\"repairSs\":\"5\",\"repairSatisfaction\":\"4\",\"suggestions\":\"发规划局快乐\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-03 13:48:13', 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 (1896438906180636673, '000000', '维修评价', 2, 'org.dromara.eims.controller.EimsRepairFbController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairFb', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896386025134993409\",\"resId\":\"1895349522965901314\",\"resCode\":\"WXD202502280003\",\"fbResult\":\"撒娇娇东方今典不放假不打击发吧较大办法较大笔记法编辑的办法几把的绝大部分感激不尽电饭锅对吧飞机不打击不定积分毕竟大部分进步较大防爆电机部分酒店\",\"fbUser\":\"1889581563890200577\",\"fbDept\":100,\"fbTime\":\"2025-03-03 10:19:01\",\"repairTimeliness\":\"5\",\"serviceAttitude\":\"5\",\"repairSs\":\"5\",\"repairSatisfaction\":\"5\",\"suggestions\":\"d\'d\'s\'d\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-03 13:54:04', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896749888224399362, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_maint_stand\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:29:48', 583); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896750447669055489, '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-03-04 10:32:01\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1896749886265659393\",\"dataName\":\"master\",\"tableName\":\"eims_maint_stand\",\"tableComment\":\"保养标准\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsMaintStand\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"maintStand\",\"functionName\":\"保养标准\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 10:32:01\",\"columnId\":\"1896749886894804994\",\"tableId\":\"1896749886265659393\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 10:32:01\",\"columnId\":\"1896749886932553730\",\"tableId\":\"1896749886265659393\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"increment\":true,\"query\":true,\"capJavaField\":\"EquId\",\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 10:32:01\",\"columnId\":\"1896749886945136641\",\"tableId\":\"1896749886265659393\",\"columnName\":\"equ_code\",\"columnComment\":\"设备编码\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"equCode\",\"isPk\":\"0\",\"is', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:32:01', 102); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896750595920924674, '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\":4,\"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-03-04 10:32:37', 65); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896750680566173697, '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\":\"1896750595690237954\",\"parentId\":0,\"menuName\":\"设备保养\",\"orderNum\":4,\"path\":\"maint\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:32:57', 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 (1896750723364851714, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750595690237954', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:33:07', 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 (1896750775739125762, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1896749886265659393\"}', '', 0, '', '2025-03-04 10:33:20', 642); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896751542311096321, '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\":4,\"path\":\"maint\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:36:22', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896751594559541249, '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\":\"1896750773071548418\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养标准\",\"orderNum\":1,\"path\":\"maintStand\",\"component\":\"eims/maint-stand/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintStand:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 10:36:35', 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 (1896766180322549762, '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\":\"1896750773071548418\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养标准\",\"orderNum\":1,\"path\":\"stand\",\"component\":\"eims/maint-stand/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintStand:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:34:32', 104); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896767998939209729, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896767998691745793\",\"equId\":\"1890217827130769409\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":null,\"name\":\"1\",\"stand\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:41:46', 60); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896768251243372546, '000000', '保养标准', 3, 'org.dromara.eims.controller.EimsMaintStandController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintStand/1896767998691745793', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:42:46', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896768289860329473, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896768289545756673\",\"equId\":\"1890217827130769409\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":null,\"name\":\"1212\",\"stand\":\"212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:42:55', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896768786432368642, '000000', '保养标准', 3, 'org.dromara.eims.controller.EimsMaintStandController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintStand/1896768289545756673', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:44:54', 98); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896768832297082881, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896768832229974017\",\"equId\":\"1890217827130769409\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":\"GPA2001G004\",\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":\"PF9810A\",\"name\":\"1212\",\"stand\":\"122\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:45:05', 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 (1896769493512331266, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896769493281644545\",\"equId\":\"1890217827189489665\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":\"GPA2002G005\",\"equName\":\"老化台\",\"modelNo\":\"/\",\"name\":\"氨甲苯酸\",\"stand\":\"飞机杯开办费\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 11:47:42', 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 (1896799528101191681, '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\":\"maint_plan_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:47:03', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896799723572535298, '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\":\"maint_plan_type\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:47:50', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896799770016063489, '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\":\"maint_plan_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:48:01', 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 (1896800283537285121, '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\":\"eims_maint_cycle\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:50:03', 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 (1896800350994276353, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1896799527937613825\",\"dictName\":\"保养类型\",\"dictType\":\"eims_maint_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:50:19', 99); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896800928654794754, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1896800283470176257\",\"dictName\":\"保养周期\",\"dictType\":\"maint_cycle_unit\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:52:37', 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 (1896800948254777346, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1896799527937613825\",\"dictName\":\"保养类型\",\"dictType\":\"maint_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:52:42', 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 (1896800982144753665, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1896799527937613825\",\"dictName\":\"保养类型\",\"dictType\":\"eims_maint_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:52:50', 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 (1896801110402375681, '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\":\"maint_cycle_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:53:20', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896801136914571266, '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\":\"maint_cycle_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:53:27', 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 (1896801165574250497, '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\":\"maint_cycle_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:53:33', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896801366636601345, '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\":4,\"dictLabel\":\"季\",\"dictValue\":\"4\",\"dictType\":\"maint_cycle_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:54:21', 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 (1896801400413331457, '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\":5,\"dictLabel\":\"年\",\"dictValue\":\"5\",\"dictType\":\"maint_cycle_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:54:29', 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 (1896801626180132865, '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\":\"maint_time_rule\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:55:23', 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 (1896801914777608193, '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\":\"maint_time_rule\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:56:32', 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 (1896801954069848066, '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\":\"maint_time_rule\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:56:41', 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 (1896802461190561793, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_maint_plan\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 13:58:42', 377); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896803169310711810, '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-03-04 14:01:31\",\"params\":{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"},\"tableId\":\"1896802460217483265\",\"dataName\":\"master\",\"tableName\":\"eims_maint_plan\",\"tableComment\":\"保养计划\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsMaintPlan\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"maintPlan\",\"functionName\":\"保养计划\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 14:01:31\",\"columnId\":\"1896802460741771266\",\"tableId\":\"1896802460217483265\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 14:01:31\",\"columnId\":\"1896802460771131393\",\"tableId\":\"1896802460217483265\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\\n\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"EquId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-04 14:01:31\",\"columnId\":\"1896802460775325697\",\"tableId\":\"1896802460217483265\",\"columnName\":\"maint_type\",\"columnComment\":\"保养类型(字典)\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"m', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 14:01:31', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896803189896355841, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1896802460217483265\"}', '', 0, '', '2025-03-04 14:01:36', 628); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896804978838315009, '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\":\"1896750773071548418\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养标准\",\"orderNum\":3,\"path\":\"stand\",\"component\":\"eims/maint-stand/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintStand:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 14:08:43', 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 (1896805042268774402, '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\":\"1896803187283304450\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养计划\",\"orderNum\":2,\"path\":\"plan\",\"component\":\"eims/maint-plan/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintPlan:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 14:08: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 (1896834556248059906, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1896800283470176257\",\"dictName\":\"保养周期单位\",\"dictType\":\"maint_cycle_unit\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 16:06:14', 139); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896835506387939329, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896835506257915905\",\"code\":\"BXD202503040001\",\"status\":\"0\",\"occTime\":\"2025-03-04 16:09:55\",\"reqTime\":\"2025-03-04 16:08:04\",\"reqDept\":103,\"reqUser\":1,\"reqDesc\":\"东风\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827260792833\",\"fixtureId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 16:10:01', 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 (1896835549681545218, '000000', '维修工单-批量', 1, 'org.dromara.eims.controller.EimsRepairResController.addBatch()', 'POST', 1, 'admin', '研发部门', '/eims/repairRes/addBatch', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"reqId\":null,\"reqUser\":null,\"reqDept\":null,\"resCode\":null,\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":null,\"startTime\":null,\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"fbId\":null,\"batchReqIds\":\"1896835506257915905\",\"reqCode\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 16:10:11', 155); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896835615733444610, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896835549241143298\",\"reqId\":\"1896835506257915905\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202503040001\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":null,\"resHandle\":null,\"resPrevent\":null,\"status\":\"2\",\"startTime\":\"2025-03-04 16:10:25\",\"endTime\":null,\"useFixture\":null,\"useParts\":null,\"remark\":null,\"fbId\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202503040001\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 16:10:27', 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 (1896837396639117313, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":1,\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-04 16:17:32', 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 (1897089729444835330, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 09:00:12', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897089832083648514, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897089831962013698\",\"equId\":\"1890217827311124481\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"3\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 09:00:37', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897120752920551426, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:03:29', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897122484702511105, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":1,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:10:22', 118); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897122705461313538, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897122705419370498\",\"equId\":\"1890217827235627010\",\"maintType\":\"2\",\"maintCycle\":2,\"maintCycleUnit\":\"2\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:11:14', 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 (1897122855822917633, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897122705419370498\",\"equId\":\"1890217827235627010\",\"maintType\":\"2\",\"maintCycle\":2,\"maintCycleUnit\":\"2\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":1,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:11:50', 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 (1897123202838659074, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":0,\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:13:13', 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 (1897128400470491137, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-05\",\"maintLastTime\":null,\"maintNextTime\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 11:33:52', 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 (1897151847347060737, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897151846667583489\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":7,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-05\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-12\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:07:02', 142); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897154912062078978, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":9,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-10\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:19:13', 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 (1897154939039842306, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":9,\"maintCycleUnit\":\"2\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-05-03\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:19:20', 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 (1897155112872771585, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":9,\"maintCycleUnit\":\"3\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-12-01\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:20:01', 78); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897155160616534017, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":9,\"maintCycleUnit\":\"4\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2027-06-01\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:20:12', 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 (1897155308071485441, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":9,\"maintCycleUnit\":\"5\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2034-03-01\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:20:48', 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 (1897155596283084801, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-04\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:21:56', 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 (1897155645092200450, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"1\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-04\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:22:08', 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 (1897156009988259841, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"1\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-04\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:23:35', 56401); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897156387806969858, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"1\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-04-01\",\"maintNextTime\":\"2025-04-04\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:25:05', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897156426121936897, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"2\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-04-01\",\"maintNextTime\":\"2025-04-22\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:25:14', 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 (1897156502957391873, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1896837396572008450\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":3,\"maintCycleUnit\":\"3\",\"maintRule\":\"1\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-04-01\",\"maintNextTime\":\"2025-07-01\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 13:25:32', 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 (1897178742457434113, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895305450813304833\",\"reqId\":\"1895287406519095298\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280002\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"fghjkl;\",\"resHandle\":\"ghjkl;\",\"resPrevent\":\"ghjkl;\",\"status\":\"2\",\"startTime\":\"2025-02-28 10:50:03\",\"endTime\":\"2025-02-28 10:50:05\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"fbId\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280002\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 14:53:55', 158); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897178908568649730, '000000', '维修工单', 2, 'org.dromara.eims.controller.EimsRepairResController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/repairRes', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1895305450813304833\",\"reqId\":\"1895287406519095298\",\"reqUser\":1,\"reqDept\":103,\"resCode\":\"WXD202502280002\",\"resUser\":\"1889581724095836162\",\"resDept\":100,\"resReason\":\"fghjkl;\",\"resHandle\":\"ghjkl;\",\"resPrevent\":\"ghjkl;\",\"status\":\"3\",\"startTime\":\"2025-02-28 10:50:03\",\"endTime\":\"2025-02-28 10:50:05\",\"useFixture\":null,\"useParts\":null,\"remark\":null,\"fbId\":null,\"batchReqIds\":null,\"reqCode\":\"BXD202502280002\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 14:54:34', 51); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897209999249702914, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_maint_order\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 16:58:07', 491); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897210227503726593, '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\":\"maint_order_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 16:59:01', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897210572715917313, '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\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:00: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 (1897210624301662209, '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\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:00:36', 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 (1897210740509048833, '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\":\"1897210624087752706\",\"dictSort\":1,\"dictLabel\":\"保养中\",\"dictValue\":\"1\",\"dictType\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:01:04', 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 (1897210919186399234, '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\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"purple\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:01:46', 224); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897210940631875586, '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\":\"1897210624087752706\",\"dictSort\":1,\"dictLabel\":\"保养中\",\"dictValue\":\"1\",\"dictType\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:01:51', 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 (1897211001193431042, '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\":\"maint_order_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-05 17:02:06', 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 (1897451137835532290, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1897209998247264257\"}', '', 0, '', '2025-03-06 08:56:19', 1299); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897451927111270401, '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-03-06 08:59:26\",\"params\":{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"},\"tableId\":\"1897209998247264257\",\"dataName\":\"master\",\"tableName\":\"eims_maint_order\",\"tableComment\":\"保养工单\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsMaintOrder\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"maintOrder\",\"functionName\":\"保养工单\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-06 08:59:26\",\"columnId\":\"1897209998746386434\",\"tableId\":\"1897209998247264257\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-06 08:59:26\",\"columnId\":\"1897209998784135170\",\"tableId\":\"1897209998247264257\",\"columnName\":\"equ_id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"EquId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-06 08:59:26\",\"columnId\":\"1897209998788329474\",\"tableId\":\"1897209998247264257\",\"columnName\":\"maint_type\",\"columnComment\":\"计划表冗余-保养类型(字典)\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 08:59:27', 120); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897452548803592193, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1897209998247264257\"}', '', 0, '', '2025-03-06 09:01:55', 241); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897485460890562561, '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\":\"1897452547813736449\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养工单\",\"orderNum\":1,\"path\":\"maintOrder\",\"component\":\"eims/maint-order/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 11:12:42', 74); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897486692183478273, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"0\",\"planTime\":\"2025-03-06 11:15:38\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 11:17:36', 378); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897534171993681921, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897534171343564802\",\"equId\":\"1890217827189489665\",\"maintType\":\"2\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BY202503060002\",\"status\":\"0\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 14:26:09\",\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 14:26:16', 154); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897535775396409346, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":null,\"roleName\":\"管理员\",\"roleKey\":\"admin\",\"roleSort\":1,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[],\"deptIds\":null,\"superAdmin\":false}', '', 1, '不允许使用系统内置管理员角色标识符!', '2025-03-06 14:32:38', 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 (1897535901242306561, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1897535901137448961\",\"roleName\":\"管理员\",\"roleKey\":\"leader\",\"roleSort\":1,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 14:33:08', 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 (1897537489872695297, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1897537489230966786\",\"deptId\":100,\"userName\":\"liliangting\",\"nickName\":\"李良庭\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[\"1897535901137448961\"],\"postIds\":[],\"roleId\":null,\"roleKey\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 14:39:27', 400); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897537651730886657, '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\":\"1897535901137448961\",\"roleName\":\"管理员\",\"roleKey\":\"leader\",\"roleSort\":1,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1890266675786121217\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1890265974959865859\",\"1890265974959865860\",\"1890265974959865861\",\"1890265974959865862\",\"1890265974959865863\",\"1892046376327188482\",\"1891320717983477763\",\"1891320717983477764\",\"1891320717983477765\",\"1891320717983477766\",\"1891320717983477767\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1891716266575327238\",\"1891716266575327239\",\"1888814115854311426\",\"1888837193552453634\",\"1894280983377555458\",\"1894662033104052225\",\"1895366080371011586\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894912845009076225\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1895366080371011587\",\"1895366080371011588\",\"1895366080371011589\",\"1895366080371011590\",\"1895366080371', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 14:40:05', 604); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897559484257611777, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"2\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":\"2025-03-06 16:06:48\",\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:06:51', 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 (1897560392307650561, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"0\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":\"2025-03-06 16:06:48\",\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:10:27', 158); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897560429959917570, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"1\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":\"2025-03-06 16:06:48\",\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:10:36', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897562305652666369, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"2\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":\"2025-03-06 16:06:48\",\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:18:03', 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 (1897562338435346433, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897486690749026306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BY101\",\"status\":\"3\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 11:15:40\",\"endTime\":\"2025-03-06 16:06:48\",\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:18:11', 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 (1897562999809978370, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897562999742869505\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1897537489230966786\",\"maintDept\":100,\"maintCode\":\"BYSD202503060001\",\"status\":\"0\",\"planTime\":\"2025-03-06\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:20: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 (1897563711847608322, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897562999742869505\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BYSD202503060001\",\"status\":\"0\",\"planTime\":\"2025-03-06\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:23:39', 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 (1897563991733514242, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",108,\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1894280983377555458\",\"1894662033104052225\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1894280983377555459\",\"1894280983377555460\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1896751542185267202\",\"1897452547813736449\",\"1896750773071548418\",\"1896803187283304450\",\"1897452547813736450\",\"1897452547813736451\",\"1897452547813736452\",\"1897452547813736453\",\"1897452547813736454\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:24:45', 213); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897564244876537858, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1890266675786121217\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1890265974959865859\",\"1890265974959865860\",\"1890265974959865861\",\"1890265974959865862\",\"1890265974959865863\",\"1892046376327188482\",\"1891320717983477763\",\"1891320717983477764\",\"1891320717983477765\",\"1891320717983477766\",\"1891320717983477767\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1891716266575327238\",\"1891716266575327239\",\"1888814115854311426\",\"1888837193552453634\",\"1894280983377555458\",\"1894662033104052225\",\"1895366080371011586\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894912845009076225\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1895366080371011587\",\"1895366080371011588\",\"1895366080371011589\",\"1895366080371011590\",\"18953660803', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:25:46', 188); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897564475626172418, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897562999742869505\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BYSD202503060001\",\"status\":\"1\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 16:26:35\",\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:26:41', 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 (1897564619746652161, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897562999742869505\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BYSD202503060001\",\"status\":\"2\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 16:26:35\",\"endTime\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:27:15', 57); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897564770552852482, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'baoshiwei', 'XXX科技', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897562999742869505\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":\"1889581724095836162\",\"maintDept\":100,\"maintCode\":\"BYSD202503060001\",\"status\":\"3\",\"planTime\":\"2025-03-06\",\"startTime\":\"2025-03-06 16:26:35\",\"endTime\":null,\"planId\":null,\"remark\":\"已验证\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:27:51', 141); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897570620038262786, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1897122705419370498', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:51:06', 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 (1897570645455745026, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1897151846667583489', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:51:12', 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 (1897570680121667585, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1897089831962013698', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:51:20', 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 (1897571573600694274, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1896837396572008450', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:54:53', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897572075621134338, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897572075520471042\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":11,\"maintCycleUnit\":\"2\",\"maintRule\":\"0\",\"maintUser\":\"1891772104536256514\",\"maintDept\":103,\"status\":\"0\",\"maintFirstTime\":\"2025-03-06\",\"maintLastTime\":null,\"maintNextTime\":\"2025-05-22\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 16:56:53', 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 (1897600867513217026, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897600866552721409\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1891772104536256514\",\"verifyUser\":null,\"maintDept\":103,\"maintCode\":\"BYYJ202503060005\",\"status\":\"0\",\"planTime\":\"2025-05-22\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-06 18:51:17', 244); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897818367488241666, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897818367291109377\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1891772104536256514\",\"verifyUser\":null,\"maintDept\":103,\"maintCode\":\"BYYJ202503070019\",\"status\":\"0\",\"planTime\":\"2025-05-22\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 09:15:33', 74); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897819041118629889, '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\":\"1897452547813736449\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养工单\",\"orderNum\":1,\"path\":\"order\",\"component\":\"eims/maint-order/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 09:18:14', 327); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897840262182924289, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":1,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-07\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-08\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintPlanMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintPlanMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_plan ( id, equ_id, maint_type, maint_cycle, maint_cycle_unit, maint_rule, maint_user, maint_dept, status, maint_first_time, maint_next_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'\n; Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'', '2025-03-07 10:42:33', 606); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897922412076965890, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897922410948698114\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:08:59', 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 (1897923516990857217, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1897922410948698114', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:13:23', 115); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897923533424140290, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1897923090925068289', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:13:27', 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 (1897923670024232961, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897923669059543042\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:13:59', 229); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897924827287232513, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1897924380593856513,1897924380816154625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:18:35', 86); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897925305685352450, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1897923669059543042', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:20:29', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897925398152978434, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:20:51', 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 (1897927626838351873, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:29:43', 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 (1897927679619473410, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:29:55', 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 (1897927739027595266, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:30:09', 53); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897927834993270786, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:30:32', 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 (1897927964219777026, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:31:03', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897928014568202242, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:31:15', 186); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897928374456262657, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:32:41', 39108); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897928648507891713, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:33:46', 233); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897929686363250690, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-07\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:37:54', 174250); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897930365878247426, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-06\",\"maintNextTime\":\"2025-03-01\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:40:36', 161); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897931600043810818, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-01\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:45:30', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897931766956138498, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1897931147587461122', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:46:10', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897931775709650945, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1897931649146527746', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:46:12', 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 (1897931813022179329, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-06\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-07 16:46:21', 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 (1898900820675776513, '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\":\"eims_orditm_status\",\"remark\":\"eims_maint_orditm表status\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 08:56:50', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898900874329313282, '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\":\"eims_orditm_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 08:57:03', 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 (1898900918226898945, '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\":\"eims_orditm_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 08:57:13', 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 (1898903042855784449, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_maint_orditm\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 09:05:40', 366); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898903536416313346, '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-03-10 09:07:37\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1898903041693962242\",\"dataName\":\"master\",\"tableName\":\"eims_maint_orditm\",\"tableComment\":\"保养工单条目\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsMaintOrditm\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"maintOrditm\",\"functionName\":\"工单条目\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-10 09:07:37\",\"columnId\":\"1898903042084032513\",\"tableId\":\"1898903041693962242\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-10 09:07:37\",\"columnId\":\"1898903042096615425\",\"tableId\":\"1898903041693962242\",\"columnName\":\"order_id\",\"columnComment\":\"工单id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"orderId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"capJavaField\":\"OrderId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-10 09:07:37\",\"columnId\":\"1898903042100809730\",\"tableId\":\"1898903041693962242\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 09:07:38', 93); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898903846174052353, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1898903041693962242\"}', '', 0, '', '2025-03-10 09:08:52', 968); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898910839706193921, '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\":\"1898903842122354690\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单条目\",\"orderNum\":1,\"path\":\"maintOrditm\",\"component\":\"eims/maintOrditm/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrditm:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 09:36:39', 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 (1898910994639589377, '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\":\"1898903842122354690\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单条目\",\"orderNum\":1,\"path\":\"maintOrditm\",\"component\":\"eims/maint-orditm/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrditm:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 09:37:16', 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 (1898911020870766593, '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\":\"1897452547813736449\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养工单\",\"orderNum\":0,\"path\":\"order\",\"component\":\"eims/maint-order/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 09:37:22', 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 (1898926941882519553, '000000', '工单条目', 1, 'org.dromara.eims.controller.EimsMaintOrditmController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898926941085601793\",\"orderId\":\"1897931983348670465\",\"equId\":\"1890217827189489665\",\"itmName\":\"1896769493281644545\",\"itmAction\":\"飞机杯开办费\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"0\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 10:40:38', 200); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898927447975628801, '000000', '工单条目', 3, 'org.dromara.eims.controller.EimsMaintOrditmController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrditm/1898926941085601793', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 10:42:39', 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 (1898927889094774786, '000000', '工单条目', 1, 'org.dromara.eims.controller.EimsMaintOrditmController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898927889052831745\",\"orderId\":\"1897931983348670465\",\"equId\":\"1890217827189489665\",\"itmName\":\"氨甲苯酸\",\"itmAction\":\"飞机杯开办费\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"0\",\"remark\":\"1212\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 10:44:24', 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 (1898936257502998529, '000000', '保养标准', 3, 'org.dromara.eims.controller.EimsMaintStandController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintStand/1896769493281644545', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:17:39', 132); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898936267363807234, '000000', '保养标准', 3, 'org.dromara.eims.controller.EimsMaintStandController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintStand/1896768832229974017', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:17:41', 321); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898936343289098242, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898936343133908994\",\"equId\":\"1890217827189489665\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":\"GPA2002G005\",\"equName\":\"老化台\",\"modelNo\":\"/\",\"name\":\"测试测试1\",\"stand\":\"测试测试1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:17:59', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898936844953022465, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1897925615304679425', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:19:59', 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 (1898936956131438594, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898936955921723394\",\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":\"1889581665270722561\",\"maintDept\":100,\"maintCode\":\"BYSD202503100001\",\"status\":\"0\",\"planTime\":\"2025-03-10\",\"startTime\":\"2025-03-10 11:20:17\",\"endTime\":\"2025-03-10 11:20:19\",\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:20:26', 74); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898937335623675906, '000000', '工单条目', 3, 'org.dromara.eims.controller.EimsMaintOrditmController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrditm/1898927889052831745', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 11:21:56', 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 (1898963568482717697, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventory/1890218318216658946', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 13:06:10', 109); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898963574673510402, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventory/1887748053364764673', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 13:06:12', 51); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898963708043988993, '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\":\"1898963707783942145\",\"inventoryCode\":\"PD1234567\",\"inventoryName\":\"盘点测试\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-03-10\",\"endDate\":\"2025-03-10\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 13:06:44', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898979279955431425, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:08:36', 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 (1898991559371841538, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898936955921723394\",\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":\"1889581665270722561\",\"maintDept\":100,\"maintCode\":\"BYSD202503100001\",\"status\":\"1\",\"planTime\":\"2025-03-10\",\"startTime\":\"2025-03-10 11:20:17\",\"endTime\":\"2025-03-10 11:20:19\",\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:57:24', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898991657988317185, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100001\",\"status\":\"1\",\"planTime\":\"2025-03-07\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:57:47', 49); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898991931637293058, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839498469378\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:58:53', 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 (1898991951879004162, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839515246593\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:58:58', 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 (1898991971952943105, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839532023809\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 14:59: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 (1898992578688376833, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:01:27', 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 (1898993152188145665, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:03:44', 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 (1898993573573091329, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:05:24', 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 (1898999864517386242, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839498469378\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:30:24', 127); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898999904023535618, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839515246593\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:30:33', 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 (1898999952862011394, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839532023809\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:30:45', 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 (1899003186364211201, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1898900820071796737\",\"dictName\":\"工单项目完成状态\",\"dictType\":\"eims_orditm_status\",\"remark\":\"eims_maint_orditm表status\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:43:36', 380); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899003368497668097, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1898900820071796737\",\"dictName\":\"工单项完成状态\",\"dictType\":\"eims_orditm_status\",\"remark\":\"eims_maint_orditm表status\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:44:19', 240); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899007066868076546, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100001\",\"status\":\"0\",\"planTime\":\"2025-03-07\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 15:59: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 (1899007510264729601, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839498469378\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:00:47', 166); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899007550500687874, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:00:57', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899007577214210049, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839515246593\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:01:03', 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 (1899007606498840577, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839532023809\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:01:10', 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 (1899007667089756162, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839532023809\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 16:01:10\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:01:24', 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 (1899007999949721602, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839532023809\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 16:01:10\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:02:44', 21807); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899008581804544001, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:05:02', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899008647973883905, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100001\",\"status\":\"1\",\"planTime\":\"2025-03-07\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:05:18', 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 (1899008669356445698, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1898942839464914946\",\"orderId\":\"1898942839083233282\",\"equId\":\"1890217827189489665\",\"itmName\":\"测试测试2\",\"itmAction\":\"测试测试2\",\"itmUser\":\"1889581563890200577\",\"itmTime\":\"2025-03-10 14:08:30\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:05:23', 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 (1899009076908576770, '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\":\"1898903842122354690\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单项目\",\"orderNum\":1,\"path\":\"maintOrditm\",\"component\":\"eims/maint-orditm/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrditm:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:07:00', 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 (1899009248132648961, '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\":\"1898903842122354690\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单明细\",\"orderNum\":1,\"path\":\"maintOrditm\",\"component\":\"eims/maint-orditm/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrditm:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:07:41', 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 (1899009483005284353, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899009482929786881\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":8,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581724095836162\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-02\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-10\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"LCR数字电桥\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:08:37', 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 (1899009635224965122, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899009634516127746\",\"equId\":\"1890217827260792833\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":\"GPA2005H027\",\"equName\":\"LCR数字电桥\",\"modelNo\":\"HF2810\",\"name\":\"LCR数字电桥1\",\"stand\":\"LCR数字电桥1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:09:14', 182); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899009688631037954, '000000', '保养标准', 1, 'org.dromara.eims.controller.EimsMaintStandController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintStand', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899009688320659458\",\"equId\":\"1890217827260792833\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":\"GPA2005H027\",\"equName\":\"LCR数字电桥\",\"modelNo\":\"HF2810\",\"name\":\"LCR数字电桥2\",\"stand\":\"LCR数字电桥2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:09:26', 71); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899009809217277953, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899009809057894401\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503100001\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:09:55', 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 (1899010307378958338, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010187065348098\",\"orderId\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"itmName\":\"LCR数字电桥2\",\"itmAction\":\"LCR数字电桥2\",\"itmUser\":\"1889581724095836162\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:11:54', 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 (1899010356158713857, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010187082125313\",\"orderId\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"itmName\":\"LCR数字电桥2\",\"itmAction\":\"LCR数字电桥2\",\"itmUser\":\"1889581724095836162\",\"itmTime\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:12:05', 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 (1899010386206707713, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010187065348098\",\"orderId\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"itmName\":\"LCR数字电桥2\",\"itmAction\":\"LCR数字电桥2\",\"itmUser\":\"1889581724095836162\",\"itmTime\":\"2025-03-10 16:11:54\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:12:13', 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 (1899010588426686465, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100002\",\"status\":\"1\",\"planTime\":\"2025-03-10\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:13:01', 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 (1899012879829487617, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100002\",\"status\":\"2\",\"planTime\":\"2025-03-10\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '', '2025-03-10 16:22:07', 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 (1899013176031236098, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100002\",\"status\":\"2\",\"planTime\":\"2025-03-10\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":500,\"msg\":\"操作失败\",\"data\":null}', 0, '', '2025-03-10 16:23:18', 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 (1899013242481594370, '000000', '工单条目', 2, 'org.dromara.eims.controller.EimsMaintOrditmController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrditm', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010187065348098\",\"orderId\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"itmName\":\"LCR数字电桥2\",\"itmAction\":\"LCR数字电桥2\",\"itmUser\":\"1889581724095836162\",\"itmTime\":\"2025-03-10 16:11:54\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:23:34', 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 (1899013273750130689, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899010186964684802\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503100002\",\"status\":\"2\",\"planTime\":\"2025-03-10\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:23:41', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899014580850446338, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899014580720422913\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503100002\",\"status\":\"0\",\"planTime\":\"2025-03-18\",\"startTime\":\"2025-03-03 16:28:48\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:28:53', 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 (1899016353547866114, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899016353497534466\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503100005\",\"status\":\"0\",\"planTime\":\"2025-03-10\",\"startTime\":\"2025-03-10 16:35:50\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:35:55', 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 (1899016462444580865, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899016462343917569\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503100006\",\"status\":\"0\",\"planTime\":\"2025-03-01\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 16:36:21', 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 (1899020148159860738, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":11,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-10\",\"maintLastTime\":null,\"maintNextTime\":\"2025-03-21\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintPlanMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintPlanMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_plan ( id, equ_id, maint_type, maint_cycle, maint_cycle_unit, maint_rule, maint_user, maint_dept, status, maint_first_time, maint_next_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'\n; Duplicate entry \'1890217827189489665\' for key \'eims_maint_plan.maint_plan_equ\'', '2025-03-10 16:51:00', 419); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899042736721608705, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354690', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-03-10 18:20:46', 72); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899042775900602369, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354691', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:20:55', 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 (1899042785081933826, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354692', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:20:57', 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 (1899042793244049410, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354693', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:20:59', 78); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899042802098225153, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354694', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:21:01', 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 (1899042810738491394, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354695', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:21:03', 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 (1899042825699573762, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1898903842122354690', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:21:07', 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 (1899042848516587522, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548419', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"菜单已分配,不允许删除\",\"data\":null}', 0, '', '2025-03-10 18:21:12', 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 (1899042878459723778, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548419', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"菜单已分配,不允许删除\",\"data\":null}', 0, '', '2025-03-10 18:21:19', 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 (1899042989076103170, '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\":\"1897535901137448961\",\"roleName\":\"管理员\",\"roleKey\":\"leader\",\"roleSort\":1,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1896751542185267202\",113,117,120,\"1889589456286871554\",1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1046,1047,1048,1600,1601,1602,1603,1620,1621,1622,1623,1061,1062,1063,1064,1065,1040,1041,1042,1043,1044,1045,1050,\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894912845009076225\",\"1890265974959865859\",\"1890265974959865860\",\"1890265974959865861\",\"1890265974959865862\",\"1890265974959865863\",\"1892046376327188482\",\"1891410873344151554\",\"1891320717983477763\",\"1891320717983477764\",\"1891320717983477765\",\"1891320717983477766\",\"1891320717983477767\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1891716266575327238\",\"1891716266575327239\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1895366080371011587\",\"1895366080371011588\",\"1895366080371011589\",', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:21:46', 375); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899043055002173442, '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\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1896751542185267202\",108,\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1894280983377555458\",\"1894662033104052225\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1894280983377555459\",\"1894280983377555460\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1897452547813736449\",\"1896803187283304450\",\"1897452547813736450\",\"1897452547813736451\",\"1897452547813736452\",\"1897452547813736453\",\"1897452547813736454\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:01', 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 (1899043094944530433, '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\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1896751542185267202\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1894912845009076225\",\"1890265974959865859\",\"1890265974959865860\",\"1890265974959865861\",\"1890265974959865862\",\"1890265974959865863\",\"1892046376327188482\",\"1891410873344151554\",\"1891320717983477763\",\"1891320717983477764\",\"1891320717983477765\",\"1891320717983477766\",\"1891320717983477767\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",\"1891716266575327238\",\"1891716266575327239\",\"1894280983377555459\",\"1894280983377555460\",\"1894280983377555461\",\"1894280983377555462\",\"1894280983377555463\",\"1894662033104052226\",\"1894662033104052227\",\"1894662033104052228\",\"1894662033104052229\",\"1894662033104052230\",\"1895366080371011587\",\"1895366080371011588\",\"1895366080371011589\",\"1895366080371011590\",\"1895366080371011591\",\"1896803187283304451\",\"1896803187283304452\",\"1896803187283304453\",\"1896803187283304454\",\"1896803187283304455\",\"1897452547813736450\",\"1897452547813736451\",\"1897452547813736452\",\"1897452547813736453\",\"1897452547813736454\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"18790003397', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:11', 68); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899043149181075458, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548419', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:24', 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 (1899043158144303105, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548420', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:26', 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 (1899043166348361729, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548421', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:28', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899043174913130498, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548422', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:30', 34); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899043183326904321, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548423', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:32', 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 (1899043197650452482, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1896750773071548418', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:22:35', 113); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899045935247507457, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"maintName\":\"哈哈哈\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-12\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:33:28', 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 (1899046047747129346, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"maintName\":\"11111\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-12\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:33:55', 71); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899046700036874241, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"maintName\":\"哈哈哈哈\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-12\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:36:31', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899049798830616578, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899009482929786881\",\"maintName\":\"heheh\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":8,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581724095836162\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-02\",\"maintLastTime\":\"2025-03-10\",\"maintNextTime\":\"2025-03-18\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"LCR数字电桥\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:48:49', 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 (1899050754037215233, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899016462343917569,1899016353497534466,1899014580720422913,1899010186964684802,1899009809057894401,1898942839083233282,1898936955921723394,1897931983348670465', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:52:37', 119); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899050806772199425, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899050806663147521\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503100004\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":\"2025-03-10 18:52:45\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:52:50', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899051732044050433, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899051731809169410\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503100005\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":\"2025-03-10 18:56:28\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:56:30', 76); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899052260559908865, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899052260446662657\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503100006\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1897925398048120833\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-10 18:58:36', 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 (1899262054240395266, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"maintName\":\"哈哈哈哈\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-07\",\"maintNextTime\":\"2025-03-10\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 08:52:15', 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 (1899262115661783042, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899052260446662657,1899051731809169410,1899050806663147521', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 08:52:30', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899263058713288706, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899262809143812097', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 08:56: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 (1899263383411138561, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1897925398048120833\",\"maintName\":\"哈哈哈哈\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-10\",\"maintNextTime\":\"2025-03-10\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 08:57:32', 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 (1899272600083787778, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899272599966347265\",\"maintName\":\"测测测试测测测试测测测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-21\",\"maintLastTime\":\"2025-03-11\",\"maintNextTime\":\"2025-03-21\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"漏电流测试仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:34:09', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899272988514086914, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899272988451172353\",\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110001\",\"status\":\"0\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899272599966347265\",\"remark\":null,\"equName\":\"漏电流测试仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:35:42', 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 (1899273125357449218, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899273125302923266\",\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110003\",\"status\":\"0\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899272599966347265\",\"remark\":null,\"equName\":\"漏电流测试仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:36:15', 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 (1899273815563726850, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899272599966347265\",\"maintName\":\"测测测试测测测试测测测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-21\",\"maintLastTime\":\"2025-03-11\",\"maintNextTime\":\"2025-03-11\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"漏电流测试仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:38:59', 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 (1899274282771443713, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899273837483159553,1899273125302923266,1899272988451172353,1899263405775167490', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:40:50', 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 (1899274366019989506, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899272599966347265\",\"maintName\":\"测测测试测测测试测测测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-21\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-11\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"漏电流测试仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:41: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 (1899274632526065665, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899272599966347265\",\"maintName\":\"测测测试测测测试测测测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-21\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-11\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"漏电流测试仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:42:14', 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 (1899276159131086850, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1899272599966347265,1899009482929786881,1897925398048120833', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:48:18', 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 (1899276198079393793, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899275661913124866,1899274422152359937', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:48:27', 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 (1899276323593940994, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276323556192257\",\"maintName\":\"侧测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-11\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-11\",\"remark\":null,\"lastGenerateDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:48:57', 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 (1899276564284076033, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276564258910210\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110006\",\"status\":\"0\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:49:54', 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 (1899277281237430274, '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\":\"1896751542185267202\",\"menuName\":\"设备工单\",\"orderNum\":0,\"path\":\"eOrder\",\"component\":\"maint\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:52:45', 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 (1899277371532406785, '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\":\"1897452547813736449\",\"parentId\":\"1896751542185267202\",\"menuName\":\"保养工单\",\"orderNum\":1,\"path\":\"order\",\"component\":\"eims/maint-order/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:53:07', 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 (1899277430378491905, '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\":\"1899277281216458753\",\"parentId\":\"1896751542185267202\",\"menuName\":\"设备工单\",\"orderNum\":0,\"path\":\"eOrder\",\"component\":\"eims/maint-equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:53:21', 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 (1899277655524536321, '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\":\"1899277281216458753\",\"parentId\":\"1896751542185267202\",\"menuName\":\"设备工单\",\"orderNum\":0,\"path\":\"eOrder\",\"component\":\"eims/maint-equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 09:54:15', 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 (1899300021709033473, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276365864136705\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYZD202503110006\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 11:23:07', 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 (1899300228098150402, '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\":\"1897452547813736449\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单明细\",\"orderNum\":1,\"path\":\"order\",\"component\":\"eims/maint-order/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrder:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 11:23:56', 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 (1899303322202656770, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899303322173296642\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110008\",\"status\":\"0\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 11:36:14', 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 (1899331574770159618, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899303322173296642\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110008\",\"status\":\"1\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:28:30', 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 (1899333466665504769, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276564258910210\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110006\",\"status\":\"1\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:36:01', 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 (1899335242781282305, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899303322173296642\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110008\",\"status\":\"2\",\"planTime\":\"2025-03-21\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:43: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 (1899335283067572226, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899303322173296642\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581724095836162\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110008\",\"status\":\"3\",\"planTime\":\"2025-03-21\",\"startTime\":\"2025-03-10 13:43:08\",\"endTime\":\"2025-03-11 13:43:04\",\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:43:14', 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 (1899335336368787457, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276564258910210\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110006\",\"status\":\"2\",\"planTime\":\"2025-03-21\",\"startTime\":\"2025-03-11 13:36:01\",\"endTime\":null,\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:43:27', 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 (1899335765093765121, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899276564258910210\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503110006\",\"status\":\"3\",\"planTime\":\"2025-03-21\",\"startTime\":\"2025-03-11 13:36:01\",\"endTime\":\"2025-03-11 13:43:27\",\"planId\":\"1899276323556192257\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 13:45:09', 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 (1899344111150551041, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110002\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value', '2025-03-11 14:18:19', 221); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899344189386903553, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110002\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []', '2025-03-11 14:18:38', 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 (1899344512033738753, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110002\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value', '2025-03-11 14:19:54', 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 (1899344528370552833, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110002\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value', '2025-03-11 14:19:58', 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 (1899344833564889089, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899344833527140353\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110002\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 14:21:11', 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 (1899345308074889217, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110003\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'\n; Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'', '2025-03-11 14:23:04', 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 (1899345338387124226, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110004\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'\n; Duplicate entry \'10086\' for key \'eims_maint_plan.maint_plan_equ\'', '2025-03-11 14:23:11', 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 (1899345400894836738, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899345400861282306\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110004\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 14:23:26', 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 (1899349431927164929, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110005\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Incorrect integer value: \'INSERT\' for column \'id\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Incorrect integer value: \'INSERT\' for column \'id\' at row 1\n; uncategorized SQLException; SQL state [HY000]; error code [1366]; Incorrect integer value: \'INSERT\' for column \'id\' at row 1', '2025-03-11 14:39:27', 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 (1899349448146538497, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110005\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Incorrect integer value: \'INSERT\' for column \'id\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Incorrect integer value: \'INSERT\' for column \'id\' at row 1\n; uncategorized SQLException; SQL state [HY000]; error code [1366]; Incorrect integer value: \'INSERT\' for column \'id\' at row 1', '2025-03-11 14:39:31', 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 (1899349533156691969, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899349533123137538\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110005\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 14:39: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 (1899358360061071361, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110006\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:14:50\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'NEW.id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'NEW.id\' in \'field list\'\n; bad SQL grammar []', '2025-03-11 15:14:56', 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 (1899358563166048258, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110006\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:14:50\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'NEW.id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'NEW.id\' in \'field list\'\n; bad SQL grammar []', '2025-03-11 15:15:44', 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 (1899358734159433729, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899358734037798914\",\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110006\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:14:50\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 15:16:25', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899360617926217729, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110007\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:23:52\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:23:54', 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 (1899361180684374017, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110007\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:23:52\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:26:09', 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 (1899361227618635777, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110007\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:23:52\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, start_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:26:20', 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 (1899361507156414465, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899361507114471425\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110007\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":\"2025-03-11 15:23:52\",\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 15:27: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 (1899361975861497857, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110008\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:29:18', 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 (1899364164591931393, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110009\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:38: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 (1899364183550185474, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110009\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:38:04', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899364234565505026, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110009\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Explicit or implicit commit is not allowed in stored function or trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1422]; Explicit or implicit commit is not allowed in stored function or trigger.', '2025-03-11 15:38:17', 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 (1899365525786185730, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899365525756825602\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110009\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 15:43: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 (1899368429493547010, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110011\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'idd\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'idd\' in \'field list\'\n; bad SQL grammar []', '2025-03-11 15:54:57', 98); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899368512108752898, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110011\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'idd\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'idd\' in \'field list\'\n; bad SQL grammar []', '2025-03-11 15:55: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 (1899368591309795329, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110011\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Incorrect integer value: \'aaa\' for column \'id\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Incorrect integer value: \'aaa\' for column \'id\' at row 1\n; uncategorized SQLException; SQL state [HY000]; error code [1366]; Incorrect integer value: \'aaa\' for column \'id\' at row 1', '2025-03-11 15:55:35', 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 (1899368675640471554, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899368675590139906\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110011\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 15:55:55', 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 (1899372984801292290, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899372984746766338\",\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110012\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:13:03', 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 (1899373371650338817, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899373371600007169\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110013\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:14:35', 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 (1899373616849350658, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110014\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Result consisted of more than one row\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Result consisted of more than one row\n; bad SQL grammar []', '2025-03-11 16:15:34', 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 (1899373636143149058, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110014\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Result consisted of more than one row\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Result consisted of more than one row\n; bad SQL grammar []', '2025-03-11 16:15:38', 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 (1899373682641203202, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899373682578288642\",\"equId\":\"1890217827218849793\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110014\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"低温恒温槽\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:15:49', 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 (1899383654615740417, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899373682578288642,1899373371600007169,1899372984746766338,1899368675590139906,1899365525756825602,1899361507114471425,1899358734037798914,1899349533123137538,1899345400861282306,1899344833527140353', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:55:27', 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 (1899383668662464513, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899303322173296642,1899276564258910210,1899276365864136705', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:55:30', 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 (1899383758957441025, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899383758919692289\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110015\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:55: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 (1899383885042413569, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110016\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'2025-03-11-1890217827130769409\' for key \'eims_maint_order_st.unique_planTime_equId\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'2025-03-11-1890217827130769409\' for key \'eims_maint_order_st.unique_planTime_equId\'\n; Duplicate entry \'2025-03-11-1890217827130769409\' for key \'eims_maint_order_st.unique_planTime_equId\'', '2025-03-11 16:56:22', 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 (1899384053716348929, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899384053682794497\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503110016\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-11 16:57: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 (1899624415640956930, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/10086,1899276323556192257,101277677935132674,101277677935132676', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 08:52:09', 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 (1899624576693841922, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899384053682794497,1899383758919692289', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 08:52:47', 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 (1899627476031655937, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899627475863883778\",\"maintName\":\"测试测试1\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-12\",\"maintLastTime\":\"2025-03-12\",\"maintNextTime\":\"2025-03-22\",\"remark\":\"121\",\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:04:18', 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 (1899627884535894018, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1899627475863883778', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:05: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 (1899628000500011009, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899628000432902146\",\"maintName\":\"测试测试1\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":null,\"maintLastTime\":null,\"maintNextTime\":\"2025-03-12\",\"remark\":\"1\",\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:06:23', 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 (1899631880864550914, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899631880814219266\",\"maintName\":\"fghjkl\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":null,\"maintLastTime\":null,\"maintNextTime\":\"2025-03-12\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:21:49', 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 (1899631937336659970, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899631937290522625\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120002\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:22:02', 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 (1899633076190859266, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 设备不存在\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 设备不存在\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 设备不存在', '2025-03-12 09:26:33', 150); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899633094805180418, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 设备不存在\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 设备不存在\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 设备不存在', '2025-03-12 09:26:38', 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 (1899633756632797185, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 设备不存在\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 设备不存在\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 设备不存在', '2025-03-12 09:29:16', 100505); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899633857610752001, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 设备不存在\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 设备不存在\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 设备不存在', '2025-03-12 09:29:40', 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 (1899634275799638017, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 1890217827189489665\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 1890217827189489665\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 1890217827189489665', '2025-03-12 09:31:20', 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 (1899634345999704065, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 1890217827189489665\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 1890217827189489665\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 1890217827189489665', '2025-03-12 09:31:36', 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 (1899634750246723586, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899634750192197634\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120003\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899631880814219266\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:33:13', 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 (1899637592097398785, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_maint_order_st\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:44:30', 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 (1899637876081139713, '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-03-12 09:45:37\",\"params\":{\"parentMenuId\":\"1896751542185267202\",\"popupComponent\":\"drawer\"},\"tableId\":\"1899637591828963330\",\"dataName\":\"master\",\"tableName\":\"eims_maint_order_st\",\"tableComment\":\"保养工单汇总\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsMaintOrderSt\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"maintOrderSt\",\"functionName\":\"保养工单汇总\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 09:45:37\",\"columnId\":\"1899637591988346882\",\"tableId\":\"1899637591828963330\",\"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,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":true,\"edit\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 09:45:37\",\"columnId\":\"1899637592000929793\",\"tableId\":\"1899637591828963330\",\"columnName\":\"title\",\"columnComment\":\"\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"title\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"capJavaField\":\"Title\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":false,\"edit\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 09:45:37\",\"columnId\":\"1899637592005124098\",\"tableId\":\"1899637591828963330\",\"columnName\":\"equ_id\",\"columnComment\":\"\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:45:38', 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 (1899637895068753921, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1899637591828963330\"}', '', 0, '', '2025-03-12 09:45:42', 248); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899638238326398978, '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\":\"1899637894045343746\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单汇总\",\"orderNum\":0,\"path\":\"maintOrderSt\",\"component\":\"eims/maint-order-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrderSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 09:47:04', 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 (1899652795891556354, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899634750192197634,1899631937290522625,1899631414525054978', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 10:44:55', 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 (1899652824588984322, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1899631880814219266', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 10:45: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 (1899652856117567490, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899628000432902146\",\"maintName\":\"测试测试1\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-12\",\"maintLastTime\":\"2025-03-12\",\"maintNextTime\":\"2025-03-12\",\"remark\":\"1\",\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 10:45:09', 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 (1899653067682455554, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899628000432902146\",\"maintName\":\"测试测试1\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-12\",\"maintLastTime\":\"2025-03-12\",\"maintNextTime\":\"2025-03-10\",\"remark\":\"1\",\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 10:46: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 (1899656649056034818, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 触发器inser_maint_order_st查询设备失败', '2025-03-12 11:00:14', 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 (1899656664914698241, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 触发器inser_maint_order_st查询设备失败', '2025-03-12 11:00:17', 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 (1899656684556623873, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 触发器inser_maint_order_st查询设备失败', '2025-03-12 11:00:22', 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 (1899656700159434754, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 触发器inser_maint_order_st查询设备失败', '2025-03-12 11:00:26', 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 (1899657772655550466, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: 触发器inser_maint_order_st查询设备失败\n; uncategorized SQLException; SQL state [45000]; error code [1644]; 触发器inser_maint_order_st查询设备失败', '2025-03-12 11:04:42', 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 (1899660437410127874, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899660437380767746\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120004\",\"status\":\"0\",\"planTime\":\"2025-03-20\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:15:17', 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 (1899660973257629698, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120005\",\"status\":\"0\",\"planTime\":\"2025-03-30\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'plan_time,uni_id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'plan_time,uni_id\' in \'field list\'\n; bad SQL grammar []', '2025-03-12 11:17:25', 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 (1899660994409504769, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120005\",\"status\":\"0\",\"planTime\":\"2025-03-30\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'plan_time,uni_id\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'plan_time,uni_id\' in \'field list\'\n; bad SQL grammar []', '2025-03-12 11:17:30', 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 (1899661236341153793, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120005\",\"status\":\"0\",\"planTime\":\"2025-03-30\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'uni_id\' cannot be null\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'uni_id\' cannot be null\n; Column \'uni_id\' cannot be null', '2025-03-12 11:18:27', 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 (1899661377051664385, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899661377005527042\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120005\",\"status\":\"0\",\"planTime\":\"2025-03-30\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899628000432902146\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:19:01', 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 (1899661989407465473, '000000', '保养计划', 3, 'org.dromara.eims.controller.EimsMaintPlanController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintPlan/1899628000432902146', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:21: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 (1899662045028130818, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899661377005527042,1899660437380767746,1899653097587843074,1899652948107042817', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:21: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 (1899662162405728257, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899662162347008002\",\"maintName\":\"坏了\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":null,\"maintLastTime\":null,\"maintNextTime\":\"2025-03-01\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:22:08', 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 (1899662425241788417, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899662425208233986\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120007\",\"status\":\"0\",\"planTime\":\"2025-03-11\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 11:23:11', 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 (1899687641531621378, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899662162347008002\",\"maintName\":\"坏了\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-12\",\"maintNextTime\":\"2025-03-12\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 13:03:23', 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 (1899687673810984962, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899662425208233986,1899662194823503874', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 13:03:31', 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 (1899687702525190145, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n; Field \'st_id\' doesn\'t have a default value', '2025-03-12 13:03:37', 135); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899689272235073537, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n; Field \'st_id\' doesn\'t have a default value', '2025-03-12 13:09:52', 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 (1899690190456299521, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n; Field \'st_id\' doesn\'t have a default value', '2025-03-12 13:13:31', 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 (1899690839814250498, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n; Field \'st_id\' doesn\'t have a default value', '2025-03-12 13:16:05', 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 (1899690909695549442, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Field \'st_id\' doesn\'t have a default value\n; Field \'st_id\' doesn\'t have a default value', '2025-03-12 13:16:22', 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 (1899691484176785410, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1442]; Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.', '2025-03-12 13:18:39', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899691656583651329, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLException: Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLException: Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.\n; uncategorized SQLException; SQL state [HY000]; error code [1442]; Can\'t update table \'eims_maint_order\' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.', '2025-03-12 13:19:20', 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 (1899692528994689025, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899692528906608641\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120008\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 13:22:48', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899702887805689858, '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\":\"maint_order_st_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:03:58', 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 (1899702958538432514, '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\":\"maint_order_st_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:04:15', 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 (1899703034723770370, '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\":\"maint_order_st_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:04:33', 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 (1899703362852560897, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899703362819006466\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120009\",\"status\":\"0\",\"planTime\":\"2025-03-12\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:05:51', 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 (1899707277098688513, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/101279121430020106', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":500,\"msg\":\"操作失败\",\"data\":null}', 0, '', '2025-03-12 14:21:24', 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 (1899707329653317633, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/101279121430020106', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":500,\"msg\":\"操作失败\",\"data\":null}', 0, '', '2025-03-12 14:21:37', 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 (1899710124527763457, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1899277281216458753', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:32:43', 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 (1899710508071698434, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020106', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:34:15', 65); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899710537519906817, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899710537448603650\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120010\",\"status\":\"0\",\"planTime\":\"2025-04-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 14:34:22', 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 (1899713984432472066, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:48:04', 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 (1899714523593474050, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:50: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 (1899715124402356225, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:52:35', 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 (1899715269487525890, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:10', 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 (1899715285912420353, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:14', 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 (1899715290786201601, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:15', 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 (1899715295278301186, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:16', 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 (1899715298721824769, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:17', 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 (1899715301326487553, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53: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 (1899715302618333186, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53: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 (1899715303452999682, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:18', 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 (1899715304195391489, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53: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 (1899715304866480129, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:18', 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 (1899715305814392833, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:19', 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 (1899715306334486530, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '', '2025-03-12 14:53:19', 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 (1899717829938151425, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"存在子项,不能删除!\",\"data\":null}', 0, '', '2025-03-12 15:03:20', 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 (1899717972930363393, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":500,\"msg\":\"存在子项,不能删除!\",\"data\":null}', 0, '', '2025-03-12 15:03:54', 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 (1899718017842970625, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1899710537448603650,1899703362819006466,1899692528906608641', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:04:05', 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 (1899718069097365506, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020107', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-12 15:04:17', 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 (1899718129193353218, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899718129113661442\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503120011\",\"status\":\"0\",\"planTime\":\"2025-03-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:04:32', 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 (1899719721716056065, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581563890200577\",\"specialNote\":\"钢结构加工\",\"remark\":\"11\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:10:51', 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 (1899719781963038722, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581563890200577\",\"specialNote\":\"钢结构加工\",\"remark\":\"11\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:11:06', 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 (1899720357748756481, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"11\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:13:23', 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 (1899725008309133314, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"verifyTime\":null,\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"\"}', '', 1, 'Cannot invoke \"String.equals(Object)\" because the return value of \"org.dromara.eims.domain.bo.EimsMaintOrderStBo.getStatus()\" is null', '2025-03-12 15:31:52', 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 (1899725026415943682, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"verifyTime\":null,\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"\"}', '', 1, 'Cannot invoke \"String.equals(Object)\" because the return value of \"org.dromara.eims.domain.bo.EimsMaintOrderStBo.getStatus()\" is null', '2025-03-12 15:31:56', 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 (1899725043293822978, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"verifyTime\":null,\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"\"}', '', 1, 'Cannot invoke \"String.equals(Object)\" because the return value of \"org.dromara.eims.domain.bo.EimsMaintOrderStBo.getStatus()\" is null', '2025-03-12 15:32:00', 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 (1899725375398813698, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"verifyTime\":null,\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:33: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 (1899725608916688897, '000000', '保养工单汇总', 2, 'org.dromara.eims.controller.EimsMaintOrderStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrderSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101279121430020108\",\"title\":\"202503电子镇流器节能灯输入特性分析仪\",\"equId\":\"1890217827130769409\",\"planTime\":\"2025-03-01\",\"verifyTime\":null,\"maintUser\":null,\"status\":null,\"verifyUser\":\"1889581665270722561\",\"specialNote\":\"钢结构加工\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 15:34:15', 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 (1899745216476917762, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inspect_plan\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:52:10', 466); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899745650729988097, '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-03-12 16:53:53\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1899745214761447426\",\"dataName\":\"master\",\"tableName\":\"eims_inspect_plan\",\"tableComment\":\"点检计划\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInspectPlan\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inspectPlan\",\"functionName\":\"点检计划\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:53:53\",\"columnId\":\"1899745215323484161\",\"tableId\":\"1899745214761447426\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:53:53\",\"columnId\":\"1899745215378010114\",\"tableId\":\"1899745214761447426\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\\n\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"capJavaField\":\"EquId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:53:53\",\"columnId\":\"1899745215394787330\",\"tableId\":\"1899745214761447426\",\"columnName\":\"insp_type\",\"columnComment\":\"点检类型(字典)\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"inspType\",\"isPk\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:53:53', 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 (1899745819311648770, '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\":6,\"path\":\"inspect\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:54:34', 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 (1899745931274399746, '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-03-12 16:55:00\",\"params\":{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"},\"tableId\":\"1899745214761447426\",\"dataName\":\"master\",\"tableName\":\"eims_inspect_plan\",\"tableComment\":\"点检计划\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInspectPlan\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inspectPlan\",\"functionName\":\"点检计划\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:55:00\",\"columnId\":\"1899745215323484161\",\"tableId\":\"1899745214761447426\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:55:00\",\"columnId\":\"1899745215378010114\",\"tableId\":\"1899745214761447426\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\\n\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"capJavaField\":\"EquId\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-12 16:55:00\",\"columnId\":\"1899745215394787330\",\"tableId\":\"1899745214761447426\",\"columnName\":\"insp_type\",\"columnComment\":\"点检类型(字典)\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaFiel', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:55:00', 99); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899745962148671489, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1899745214761447426\"}', '', 0, '', '2025-03-12 16:55:08', 753); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899746147373330434, '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\":\"1899745819223568385\",\"parentId\":0,\"menuName\":\"设备点检\",\"orderNum\":5,\"path\":\"inspect\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:55:52', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899746236305158145, '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\":\"1899745958994554881\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检计划\",\"orderNum\":1,\"path\":\"plan\",\"component\":\"eims/inspect-plan/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectPlan:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:56:13', 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 (1899746289224691714, '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\":\"1899637894045343746\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单汇总\",\"orderNum\":0,\"path\":\"orderSt\",\"component\":\"eims/maint-order-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrderSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 16:56:26', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899759991034392578, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 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\":\"1898900820071796737\",\"dictName\":\"保养工单项完成状态\",\"dictType\":\"eims_orditm_status\",\"remark\":\"eims_maint_orditm表status\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 17:50:52', 103); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899760348145823745, '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\":\"eims_inspect_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 17:52:17', 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 (1899760460167294977, '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\":\"eims_inspect_type\",\"cssClass\":null,\"listClass\":\"default\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 17:52:44', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899760521911644162, '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\":\"eims_inspect_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 17:52:59', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899765244953800706, '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\":\"1899745958994554881\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检计划\",\"orderNum\":1,\"path\":\"plan\",\"component\":\"eims/insp-plan/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectPlan:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 18:11:45', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899768029498097665, '000000', '点检计划', 1, 'org.dromara.eims.controller.EimsInspectPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899768028726345729\",\"equId\":\"1890217827189489665\",\"inspType\":\"1\",\"inspName\":\"dfghjklkjhgvc\",\"inspNo\":null,\"inspDesc\":\"xcvbjkv\",\"inspCycle\":10,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581665270722561\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":null,\"inspLastTime\":null,\"inspNextTime\":\"2025-03-12\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-12 18:22:49', 143); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900018702523133953, '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\":\"eims_inspect_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 10:58:54', 60); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900018883196973057, '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\":\"eims_inspect_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 10:59:37', 68); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900018958098853889, '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\":\"eims_inspect_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 10:59:55', 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 (1900019013019070466, '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\":\"eims_inspect_status\",\"cssClass\":null,\"listClass\":\"purple\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:00:08', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900019057260589057, '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\":\"eims_inspect_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:00:19', 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 (1900019372785496066, '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\":\"eims_inspect_result\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:01:34', 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 (1900019570580484097, '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\":\"eims_inspect_result\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:02:21', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900019612355751938, '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\":\"eims_inspect_result\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:02:31', 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 (1900019734657462274, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inspect_record\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:03:00', 611); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900020343573934081, '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-03-13 11:05:25\",\"params\":{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"},\"tableId\":\"1900019733193650178\",\"dataName\":\"master\",\"tableName\":\"eims_inspect_record\",\"tableComment\":\"点检记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInspectRecord\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inspectRecord\",\"functionName\":\"点检记录\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-13 11:05:25\",\"columnId\":\"1900019733961207810\",\"tableId\":\"1900019733193650178\",\"columnName\":\"id\",\"columnComment\":\"id\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-13 11:05:25\",\"columnId\":\"1900019733973790721\",\"tableId\":\"1900019733193650178\",\"columnName\":\"equ_id\",\"columnComment\":\"设备di\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"EquId\",\"increment\":true,\"query\":true,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-13 11:05:25\",\"columnId\":\"1900019733982179330\",\"tableId\":\"1900019733193650178\",\"columnName\":\"insp_name\",\"columnComment\":\"点检名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"jav', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:05:25', 165); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900020522796544001, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1900019733193650178\"}', '', 0, '', '2025-03-13 11:06:08', 1004); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900025998309421057, '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\":\"1900020518602240002\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检记录\",\"orderNum\":1,\"path\":\"record\",\"component\":\"eims/insp-record/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectRecord:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 11:27:53', 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 (1900051073326759937, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900051072584368130\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYSD202503130001\",\"status\":\"0\",\"planTime\":\"2025-03-13\",\"startTime\":\"2025-03-13 13:07:21\",\"endTime\":\"2025-03-13 13:07:25\",\"planId\":null,\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:07:32', 199); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900051482544029697, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900051482447560706\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130001\",\"status\":\"0\",\"planTime\":\"2025-04-21\",\"startTime\":\"2025-03-13 13:09:06\",\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:09:09', 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 (1900051795447496705, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900051795330056193\",\"equId\":\"1890217827235627010\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1891772104536256514\",\"verifyUser\":null,\"maintDept\":103,\"maintCode\":\"BYSD202503130002\",\"status\":\"0\",\"planTime\":\"2025-03-13\",\"startTime\":null,\"endTime\":null,\"planId\":null,\"remark\":null,\"equName\":\"漏电流测试仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:10:24', 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 (1900053801931202562, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1900051795330056193,1900051482447560706,1900051072584368130,1899718129113661442', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:18:22', 130); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900053838333566978, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545600', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-13 13:18:31', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900053847204519937, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545601', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-13 13:18:33', 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 (1900053854993342465, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545602', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-13 13:18:35', 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 (1900053863943987201, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101279121430020108', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-13 13:18:37', 49); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900053960773689346, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899662162347008002\",\"maintName\":\"坏了\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-03-01\",\"maintLastTime\":\"2025-03-01\",\"maintNextTime\":\"2025-03-01\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:19:00', 86); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900054047339929602, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900054047297986561\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130002\",\"maintName\":\"坏了\",\"status\":\"0\",\"planTime\":\"2025-03-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:19:21', 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 (1900054934703661058, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900054934657523714\",\"equId\":\"1890217827189489665\",\"inspName\":\"电饭锅会尽快\",\"inspDesc\":null,\"status\":\"0\",\"inspCode\":\"DJSD202503130002\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-13\",\"verifyUser\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:22:52', 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 (1900056146245148674, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900054934657523714\",\"equId\":\"1890217827189489665\",\"inspName\":\"电饭锅会尽快\",\"inspDesc\":null,\"inspType\":\"1\",\"status\":\"1\",\"inspCode\":\"DJSD202503130002\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":\"2025-03-13 13:27:24\",\"planTime\":\"2025-03-13\",\"verifyUser\":null,\"planId\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 13:27:41', 138); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900067029407092737, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900054934657523714', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:10:56', 129); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900069034531868673, '000000', '点检计划', 2, 'org.dromara.eims.controller.EimsInspectPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899768028726345729\",\"equId\":\"1890217827189489665\",\"inspType\":\"1\",\"inspName\":\"dfghjklkjhgvc\",\"inspNo\":null,\"inspDesc\":\"xcvbjkv\",\"inspCycle\":10,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":\"2025-03-13\",\"inspLastTime\":\"2025-03-13\",\"inspNextTime\":\"2025-03-12\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:18:54', 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 (1900073148904992769, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900073148082909185\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130009\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:35:15', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900073894564163586, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900073148082909185\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":null,\"inspDept\":null,\"status\":\"0\",\"inspCode\":\"DJSD202503130009\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":\"2025-03-13 14:38:01\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581665270722561\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:38:13', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900073933504081922, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900073148082909185\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":null,\"inspDept\":null,\"status\":\"0\",\"inspCode\":\"DJSD202503130009\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":\"2025-03-13 14:38:01\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581665270722561\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:38:22', 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 (1900074819366252545, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900073148082909185', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:41:53', 143); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900074909686394881, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900074909598314498\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130010\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:42:15', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900075502924558338, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900074909598314498', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:44:36', 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 (1900075524130959362, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900075523900272642\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130011\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:44:41', 115); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900075844013740033, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900075523900272642', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:45:58', 190); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900075875403911170, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900075875156447233\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130012\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:46:05', 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 (1900076274693263362, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900076274575822850\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130013\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:47:40', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900076905659191298, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900076886013071361\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130014\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:50:11', 59281); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900078298608549890, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:55:43', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900079215449849858, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":\"2025-03-13 14:59:15\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581563890200577\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 14:59:21', 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 (1900080160879525890, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":\"1\",\"inspTime\":\"2025-03-13 14:59:15\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581563890200577\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 15:03:07', 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 (1900080186015989761, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":\"2\",\"inspTime\":\"2025-03-13 14:59:15\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581563890200577\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 15:03:13', 53); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900087740240842754, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545603', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":500,\"msg\":\"存在子项,不能删除!\",\"data\":null}', 0, '', '2025-03-13 15:33:14', 81); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900096547452964865, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900096547331330049\",\"maintName\":\"测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":null,\"maintLastTime\":null,\"maintNextTime\":\"2025-04-01\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:08:14', 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 (1900096579396784129, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900096579249983489\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130004\",\"maintName\":\"测试\",\"status\":\"0\",\"planTime\":\"2025-04-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:08:21', 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 (1900099609693343746, '000000', '保养计划', 2, 'org.dromara.eims.controller.EimsMaintPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900096547331330049\",\"maintName\":\"测试\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":10,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581665270722561\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":\"2025-04-01\",\"maintLastTime\":\"2025-04-01\",\"maintNextTime\":\"2025-05-01\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:20:24', 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 (1900099625220657154, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:20:27', 34); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900101400363356161, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"1\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":\"1\",\"inspTime\":\"2025-03-13 14:59:15\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581563890200577\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:27:31', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900106287503462401, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900078298012958721\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":\"1212\",\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"1\",\"inspCode\":\"DJSD202503130015\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":\"1\",\"inspTime\":\"2025-03-13 14:59:15\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581563890200577\",\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:46:56', 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 (1900107934900187138, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:53:29', 78); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900108034917560322, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:53:52', 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 (1900109199700946945, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 16:58:30', 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 (1900110006211080194, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 17:01:42', 75835); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900110044106616833, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900099625099022338\",\"equId\":\"1890217827189489665\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503130005\",\"maintName\":\"测试\",\"maintDesc\":\"we\",\"status\":\"0\",\"planTime\":\"2025-05-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900096547331330049\",\"remark\":null,\"equName\":\"老化台\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-13 17:01:52', 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 (1900352603567452161, '000000', '保养计划', 1, 'org.dromara.eims.controller.EimsMaintPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900352603433234433\",\"maintName\":\"的润滑剂考虑\",\"maintNo\":null,\"maintDesc\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":6,\"maintCycleUnit\":\"1\",\"maintRule\":\"0\",\"maintUser\":\"1889581563890200577\",\"maintDept\":100,\"status\":\"0\",\"maintFirstTime\":null,\"maintLastTime\":null,\"maintNextTime\":\"2025-03-14\",\"remark\":null,\"lastOrderDate\":null,\"equName\":\"LCR数字电桥\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:05:42', 141); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900352667480256513, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900352667400564738\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140001\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-06-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:05:57', 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 (1900353583033905153, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545606', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":500,\"msg\":\"存在子项,不能删除!\",\"data\":null}', 0, '', '2025-03-14 09:09:36', 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 (1900354305284665346, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1900352667400564738', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:12:28', 123); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900354332262428673, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545606', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-14 09:12:34', 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 (1900354786392305666, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900354786149036033\",\"equId\":\"1890217827130769409\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581665270722561\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140003\",\"maintName\":\"坏了\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-06-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1899662162347008002\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:14:23', 74); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900355317995171841, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1900354786149036033', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:16:29', 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 (1900355347565015042, '000000', '保养工单汇总', 3, 'org.dromara.eims.controller.EimsMaintOrderStController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrderSt/101276215515545607', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功!\",\"data\":null}', 0, '', '2025-03-14 09:16:36', 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 (1900355400308387841, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140004\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-06-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createDepy\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createDepy\' in \'field list\'\n; bad SQL grammar []', '2025-03-14 09:16:49', 590); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900355418792685569, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140004\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-06-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createDepy\' in \'field list\'\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createDepy\' in \'field list\'\n; bad SQL grammar []', '2025-03-14 09:16:53', 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 (1900355478955782145, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900355478888673282\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140004\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-06-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:17:08', 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 (1900358828711505921, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900078298012958721,1900076886013071361,1900076274575822850,1900075875156447233', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:30:26', 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 (1900358858356846594, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900358858256183297\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140001\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:30:33', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900359281218187265, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900358858256183297', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:32:14', 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 (1900359316160933889, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900359316106407938\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140002\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:32:23', 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 (1900366122253840385, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inspect_st\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 09:59:25', 541); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900366543827529729, '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-03-14 10:01:05\",\"params\":{\"parentMenuId\":\"1899745819223568385\",\"popupComponent\":\"drawer\"},\"tableId\":\"1900366121012326401\",\"dataName\":\"master\",\"tableName\":\"eims_inspect_st\",\"tableComment\":\"点检汇总\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInspectSt\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inspectSt\",\"functionName\":\"点检汇总\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-14 10:01:05\",\"columnId\":\"1900366121687609346\",\"tableId\":\"1900366121012326401\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-14 10:01:05\",\"columnId\":\"1900366121716969473\",\"tableId\":\"1900366121012326401\",\"columnName\":\"title\",\"columnComment\":\"标题\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"title\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"increment\":true,\"query\":false,\"capJavaField\":\"Title\",\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-14 10:01:05\",\"columnId\":\"1900366121767301121\",\"tableId\":\"1900366121012326401\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"is', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:01:06', 181); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900366567441461249, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1900366121012326401\"}', '', 0, '', '2025-03-14 10:01:11', 2001); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900367177075159041, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1900366121012326401\"}', '', 0, '', '2025-03-14 10:03:37', 162); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900367576901382146, '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\":\"1900366559082213378\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检汇总\",\"orderNum\":1,\"path\":\"inspectSt\",\"component\":\"eims/inspect-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:05:12', 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 (1900367612276142082, '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\":\"1900020518602240002\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检记录\",\"orderNum\":2,\"path\":\"record\",\"component\":\"eims/insp-record/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectRecord:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:05:21', 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 (1900367665250201601, '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\":\"1899745958994554881\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检计划\",\"orderNum\":3,\"path\":\"plan\",\"component\":\"eims/insp-plan/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectPlan:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:05:33', 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 (1900375300158550018, '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\":\"1900366559082213378\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检汇总\",\"orderNum\":1,\"path\":\"inspectSt\",\"component\":\"eims/insp-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:35:53', 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 (1900379429368877057, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900359316106407938', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:52:18', 93); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900379517411512322, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900379517243740161\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140003\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:52:39', 4862); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900379758198116353, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900379758084870145\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140004\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 10:53:36', 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 (1900382111097802753, '000000', '点检汇总', 2, 'org.dromara.eims.controller.EimsInspectStController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspectSt', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"101276215515545610\",\"title\":\"202503老化台\",\"equId\":\"1890217827189489665\",\"planTime\":\"2025-03-12 00:00:00\",\"status\":null,\"inspUser\":null,\"verifyUser\":\"1889581563890200577\",\"verifyTime\":null,\"specialNote\":\"1111\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 11:02:57', 186); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900385388849909761, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900385388724080641\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140006\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-12\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 11:15:59', 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 (1900388193773875202, '000000', '点检记录', 2, 'org.dromara.eims.controller.EimsInspectRecordController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900385388724080641\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":\"fghjkl\",\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503140006\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":\"1\",\"inspTime\":\"2025-03-14 11:26:55\",\"planTime\":\"2025-03-12\",\"verifyUser\":\"1889581665270722561\",\"planId\":\"1899768028726345729\",\"remark\":\"11\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 11:27:08', 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 (1900389863920562177, '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\":\"1899637894045343746\",\"parentId\":\"1896751542185267202\",\"menuName\":\"工单汇总\",\"orderNum\":0,\"path\":\"st\",\"component\":\"eims/maint-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:maintOrderSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 11:33:46', 99); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900389926008844289, '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\":\"1900366559082213378\",\"parentId\":\"1899745819223568385\",\"menuName\":\"点检汇总\",\"orderNum\":1,\"path\":\"st\",\"component\":\"eims/insp-st/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inspectSt:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 11:34:01', 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 (1900411575550713857, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140005\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n; bad SQL grammar []', '2025-03-14 13:00:02', 501); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900411594001457154, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140005\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n; bad SQL grammar []', '2025-03-14 13:00:07', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900411795244163074, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140005\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n; bad SQL grammar []', '2025-03-14 13:00:55', 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 (1900411815129358338, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140005\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n### The error may exist in org/dromara/eims/mapper/EimsMaintOrderMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsMaintOrderMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_maint_order ( id, equ_id, maint_type, maint_user, maint_dept, maint_code, maint_name, status, plan_time, plan_id, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: Table \'eims.st\' doesn\'t exist\n; bad SQL grammar []', '2025-03-14 13:00:59', 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 (1900412321159553026, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900412321058889729\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140005\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:03:00', 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 (1900412582879928322, '000000', '保养工单', 3, 'org.dromara.eims.controller.EimsMaintOrderController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/maintOrder/1900412321058889729', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:04:02', 78); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900412659933487106, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900412659837018113\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140006\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-07\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:04:21', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900413438232731649, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900412659837018113\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140006\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-01\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:07:26', 31); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900415560852545538, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900412659837018113\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140006\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-05\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:15:52', 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 (1900415845079556098, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900412659837018113\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140006\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-06\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:17:00', 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 (1900417833334833154, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900417832059764738\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140007\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-17\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:24:54', 135); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900417909490810881, '000000', '保养工单', 1, 'org.dromara.eims.controller.EimsMaintOrderController.add()', 'POST', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900417908962328577\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140008\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"0\",\"planTime\":\"2025-07-25\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:25:12', 91); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900419443670745089, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900417908962328577\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140008\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"1\",\"planTime\":\"2025-07-25\",\"startTime\":null,\"endTime\":null,\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:31:18', 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 (1900419473135730690, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900417908962328577\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140008\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"2\",\"planTime\":\"2025-07-25\",\"startTime\":\"2025-03-14 13:31:18\",\"endTime\":\"2025-03-14 13:31:23\",\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:31:25', 29); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900419492219813889, '000000', '保养工单', 2, 'org.dromara.eims.controller.EimsMaintOrderController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/maintOrder', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1900417908962328577\",\"equId\":\"1890217827260792833\",\"maintType\":\"1\",\"maintCycle\":null,\"maintCycleUnit\":null,\"maintRule\":null,\"maintUser\":\"1889581563890200577\",\"verifyUser\":null,\"maintDept\":100,\"maintCode\":\"BYYJ202503140008\",\"maintName\":\"的润滑剂考虑\",\"maintDesc\":null,\"status\":\"3\",\"planTime\":\"2025-07-25\",\"startTime\":\"2025-03-14 13:31:18\",\"endTime\":\"2025-03-14 13:31:23\",\"planId\":\"1900352603433234433\",\"remark\":null,\"equName\":\"LCR数字电桥\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-14 13:31:30', 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 (1901882725300477953, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fault_know\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-18 14:25:52', 523); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1901884013459316738, '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-03-18 14:30:58\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1901882723547258882\",\"dataName\":\"master\",\"tableName\":\"eims_fault_know\",\"tableComment\":\"故障知识\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFaultKnow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"faultKnow\",\"functionName\":\"故障知识\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-18 14:30:58\",\"columnId\":\"1901882724050575361\",\"tableId\":\"1901882723547258882\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-18 14:30:58\",\"columnId\":\"1901882724105101313\",\"tableId\":\"1901882723547258882\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"increment\":true,\"query\":true,\"capJavaField\":\"EquId\",\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-18 14:30:58\",\"columnId\":\"1901882724105101314\",\"tableId\":\"1901882723547258882\",\"columnName\":\"equ_type\",\"columnComment\":\"设备类型\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equType\",\"isPk\":\"0\",\"isIncrem', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-18 14:30:59', 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 (1901884420248084481, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1901882723547258882\"}', '', 0, '', '2025-03-18 14:32:36', 710); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1901894399239692290, '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\":\"1901884417291100161\",\"parentId\":0,\"menuName\":\"故障知识\",\"orderNum\":6,\"path\":\"faultKnow\",\"component\":\"eims/fault-know/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:faultKnow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-18 15:12:15', 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 (1902167783353737218, '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\":\"eims_equ_part\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:18:35', 162); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902168267091206146, '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\":\"eims_equ_part\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:20:30', 707); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902168325148762113, '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\":\"eims_equ_part\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:20:44', 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 (1902168382317125634, '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\":\"eims_equ_part\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:20:58', 332); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902168469168578561, '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\":4,\"dictLabel\":\"传输系统\",\"dictValue\":\"4\",\"dictType\":\"eims_equ_part\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:21:18', 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 (1902169014193217538, '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\":5,\"dictLabel\":\"冷却系统\",\"dictValue\":\"5\",\"dictType\":\"eims_equ_part\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:23:28', 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 (1902170132671488002, '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\":\"eims_fault_reason\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:27:55', 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 (1902170453548326913, '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\":\"eims_fault_reason\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:29:11', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902170488251998209, '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\":\"eims_fault_reason\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:29:20', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902170626437537794, '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\":\"eims_fault_reason\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:29:53', 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 (1902170723669893121, '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\":4,\"dictLabel\":\"维护保养不到位\",\"dictValue\":\"4\",\"dictType\":\"eims_fault_reason\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:30:16', 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 (1902170767911411714, '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\":5,\"dictLabel\":\"其它\",\"dictValue\":\"5\",\"dictType\":\"eims_fault_reason\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 09:30:26', 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 (1902188304408133633, '000000', '故障知识', 1, 'org.dromara.eims.controller.EimsFaultKnowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/faultKnow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902188304001286146\",\"equId\":\"1890217827189489665\",\"equType\":null,\"equPart\":\"1\",\"faultCode\":\"GZZS202503190002\",\"faultType\":\"1\",\"faultReason\":null,\"reqDesc\":\"1.故障故障\\n2.哈哈哈\",\"resHandle\":\"1.处理\\n2.处理\\n3.处理\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 10:40:07', 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 (1902189025346076673, '000000', '故障知识', 3, 'org.dromara.eims.controller.EimsFaultKnowController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/faultKnow/1902188304001286146', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 10:42:59', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902189087841206274, '000000', '故障知识', 1, 'org.dromara.eims.controller.EimsFaultKnowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/faultKnow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902189087765708802\",\"equId\":\"1890217827130769409\",\"equType\":null,\"equPart\":\"1\",\"faultCode\":\"GZZS202503190003\",\"faultType\":\"1\",\"faultReason\":\"1\",\"reqDesc\":\"发规划局快乐\",\"resHandle\":\"估计快了; \",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 10:43:14', 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 (1902233456748875777, '000000', '故障知识', 1, 'org.dromara.eims.controller.EimsFaultKnowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/faultKnow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902233456065204225\",\"equId\":\"1890217827130769409\",\"equType\":null,\"equPart\":\"2\",\"faultCode\":\"GZZS202503190004\",\"faultType\":\"2\",\"faultReason\":\"2\",\"reqDesc\":\"测试\",\"resHandle\":\"测试\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null,\"equTypeId\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 13:39:33', 100); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902245309503848449, '000000', '点检记录', 5, 'org.dromara.eims.controller.EimsInspectRecordController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"equId\":null,\"equName\":null,\"assetNo\":null,\"inspName\":null,\"inspDesc\":null,\"inspType\":null,\"inspUser\":null,\"inspDept\":null,\"status\":null,\"inspCode\":null,\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":null,\"verifyUser\":null,\"planId\":null,\"remark\":null}', '', 0, '', '2025-03-19 14:26:38', 5255); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902245309503848450, '000000', '点检记录', 3, 'org.dromara.eims.controller.EimsInspectRecordController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inspRecord/1900385388724080642,1900385388724080641,1900379758084870145,1900379517243740161', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 14:26:38', 175); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902245628413558785, '000000', '点检计划', 2, 'org.dromara.eims.controller.EimsInspectPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899768028726345729\",\"equId\":\"1890217827189489665\",\"inspType\":\"1\",\"inspName\":\"dfghjklkjhgvc\",\"inspNo\":null,\"inspDesc\":\"xcvbjkv\",\"inspCycle\":10,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":\"2025-03-13\",\"inspLastTime\":\"2025-03-12\",\"inspNextTime\":\"2025-03-19\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 14:27:54', 54); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902245672558608386, '000000', '点检计划', 2, 'org.dromara.eims.controller.EimsInspectPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899768028726345729\",\"equId\":\"1890217827189489665\",\"inspType\":\"1\",\"inspName\":\"dfghjklkjhgvc\",\"inspNo\":null,\"inspDesc\":\"xcvbjkv\",\"inspCycle\":1,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":\"2025-03-13\",\"inspLastTime\":\"2025-03-12\",\"inspNextTime\":\"2025-03-19\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 14:28:05', 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 (1902245736458829826, '000000', '点检计划', 2, 'org.dromara.eims.controller.EimsInspectPlanController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1899768028726345729\",\"equId\":\"1890217827189489665\",\"inspType\":\"1\",\"inspName\":\"dfghjklkjhgvc\",\"inspNo\":null,\"inspDesc\":\"xcvbjkv\",\"inspCycle\":1,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":\"2025-03-13\",\"inspLastTime\":\"2025-03-12\",\"inspNextTime\":\"2025-03-18\",\"remark\":null,\"equName\":\"老化台\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 14:28:20', 76); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902247727075508226, '000000', '点检记录', 1, 'org.dromara.eims.controller.EimsInspectRecordController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspRecord', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902247726584774658\",\"equId\":\"1890217827189489665\",\"equName\":\"老化台\",\"assetNo\":null,\"inspName\":\"dfghjklkjhgvc\",\"inspDesc\":null,\"inspType\":\"1\",\"inspUser\":\"1889581563890200577\",\"inspDept\":100,\"status\":\"0\",\"inspCode\":\"DJSD202503190001\",\"recordMode\":null,\"referenceValue\":null,\"upperLimit\":null,\"lowLimit\":null,\"checkValue\":null,\"inspResult\":null,\"inspTime\":null,\"planTime\":\"2025-03-19\",\"verifyUser\":null,\"planId\":\"1899768028726345729\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 14:36:15', 421); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902279508180942850, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":5,\"configKey\":\"image\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"image\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 16:42:32', 89); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902279803514470401, '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-03-19 16:43:42', 10190); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902279866659717122, '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-03-19 16:43:58', 5497); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902280214967304194, '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-03-19 16:45:21', 12499); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902282396273819650, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 16:54:01', 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 (1902309616472113153, '000000', '点检计划', 1, 'org.dromara.eims.controller.EimsInspectPlanController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inspectPlan', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902309616430170113\",\"equId\":\"1890217827130769409\",\"inspType\":\"1\",\"inspName\":\"123\",\"inspNo\":null,\"inspDesc\":\"111\",\"inspCycle\":10,\"inspCycleUnit\":\"1\",\"inspRule\":\"0\",\"inspUser\":\"1889581724095836162\",\"inspDept\":100,\"status\":\"0\",\"inspFirstTime\":null,\"inspLastTime\":null,\"inspNextTime\":\"2025-03-20\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"assetNo\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-19 18:42: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 (1902536013237010433, '000000', '对象存储配置', 2, 'org.dromara.system.controller.system.SysOssConfigController.edit()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"3DKJiDUnYk7X7zcmRUbV\",\"secretKey\":\"KVlc1Xq4NVYm4FruzLuQ85Kq3FwWyhXla9RqqUEs\",\"bucketName\":\"eims\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":null,\"region\":\"\",\"ext1\":null,\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 09:41:48', 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 (1902536080282959873, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/743796503acc4803889e92c3ac43251b.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902536080106799105\"}}', 0, '', '2025-03-20 09:42:04', 717); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902538695657996289, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/ecd38006fc094b2c925154e83e6538de.jpeg\",\"fileName\":\"WechatIMG60.jpeg\",\"ossId\":\"1902538695486029826\"}}', 0, '', '2025-03-20 09:52:27', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902541611424890882, '000000', '对象存储配置', 2, 'org.dromara.system.controller.system.SysOssConfigController.edit()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"3DKJiDUnYk7X7zcmRUbV\",\"secretKey\":\"KVlc1Xq4NVYm4FruzLuQ85Kq3FwWyhXla9RqqUEs\",\"bucketName\":\"eims\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":null,\"region\":\"\",\"ext1\":null,\"remark\":\"\",\"accessPolicy\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 10:04:02', 121); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902541936647028738, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/ec0ef809533e4845bddf68c2ba1ddc72.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T020519Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=f009d77c23e7866339f737942fea496c97bc224bed1ddd926fccfad785ac1c0e\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902541936470867969\"}}', 0, '', '2025-03-20 10:05:20', 86); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902543465638608897, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/ae5ab2835f2e4ad5a4e755d5b5e4c6db.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021124Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=0730159a8931eb51f793919511b4dd1a788d47994a32cb72e3000f54740a35fa\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902543464900411393\"}}', 0, '', '2025-03-20 10:11:24', 170159); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902543639379263489, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/4243bf4e6a034bb8aa9c78516493b545.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021205Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=818957a27e5dfd42a31124b302ff59136805274538f25f01f8ea13f5ccfeb58d\",\"fileName\":\"养老金.jpeg\",\"ossId\":\"1902543639261822977\"}}', 0, '', '2025-03-20 10:12:06', 8555); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902543929625100289, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/f59854a84ae14939be1cab10bb339f12.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021315Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=e94d86b6ae460c57025139d3bef40316e457849e053a8897f66dd5e3cea4b437\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902543929394413569\"}}', 0, '', '2025-03-20 10:13:15', 22924); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902544674541879297, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/78c9920784e74ceeb2e7538256723357.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021612Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=3fbe6cb20cadd11f0d4d39fa4fc1758f1d86d3d99c830cf87b47e14ddc6edbc5\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902544674076311553\"}}', 0, '', '2025-03-20 10:16:13', 100617); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902545393038737409, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/3d5703afccc84e3c93d2ba66de06be9b.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021903Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=37d769649b272c63d6ae0d41bb47a4f3039de5673589ba7e59ed7591dda0a65e\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902545392095019009\"}}', 0, '', '2025-03-20 10:19:04', 162277); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902545512878391297, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/7a500f148780417e9735063c6a4f5bf8.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T021932Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=ef59ab629c6df28f177dd0c94a22393c82d343e1ae08613d90055e6c114ca225\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902545512811282434\"}}', 0, '', '2025-03-20 10:19:33', 6492); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902545791304679425, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902536080106799105,1902538695486029826,1902541936470867969,1902543464900411393,1902543639261822977,1902543929394413569,1902544674076311553,1902545392095019009,1902545512811282434', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 10:20:39', 259); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902545871290056706, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/%E5%85%BB%E8%80%81%E9%87%91.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T022057Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=867adc8420b44e4af7da3f334605dec9efb3e49c2f7652338ed4e3911ad05fa0\",\"fileName\":\"养老金.jpeg\",\"ossId\":\"1902545871143256066\"}}', 0, '', '2025-03-20 10:20:58', 72); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902554378226479106, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902545871143256066', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 10:54:46', 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 (1902554411478921217, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/pic.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T025454Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=3e3563d6665a3cf5b4929b3a3a2b5b713236c434654f32d2216db55c2bbc5439\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902554411206291458\"}}', 0, '', '2025-03-20 10:54:54', 503); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902554637702901761, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/pic.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T025548Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=1ee12bb9e57a1163818b1859849cf1fa8906129c1a939b397d15bcbc0e093f37\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902554637463826433\"}}', 0, '', '2025-03-20 10:55:48', 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 (1902555182555574274, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902554411206291458', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 10:57:58', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902555188809281538, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902554637463826433', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 10:57:59', 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 (1902555213798944769, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/pic.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T025805Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=313b8be8794e02cbd56d9ede210244f04a07210ed12ef03e2cefc0d728b3fa4f\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902555213731835906\"}}', 0, '', '2025-03-20 10:58:05', 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 (1902555304072949762, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/pic.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T025826Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=c5262352c6cbc6db36edd1d9dd8e7792f97dc9f73190e55096d3d89bff04ffee\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902555303863234561\"}}', 0, '', '2025-03-20 10:58:27', 75); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902558606256775170, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902555213731835906,1902555303863234561', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 11:11:34', 270); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902558649260974081, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/.jpg/_20250320111144/.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T031144Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=2ad1c61b4e46ec5f525ac85ee8c24ea6676ee5e675d3281b1cafd86f28dbf70c\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902558649084813313\"}}', 0, '', '2025-03-20 11:11:44', 286); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902559141269606401, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902558649084813313', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 11:13:42', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902559241169539073, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/.jpeg_20250320111405.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T031405Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=dd27b16f8105c3e546558b79d0fb8e6dec4c3dd0c46f0bbd9b14656eb2de45b8\",\"fileName\":\"养老金.jpeg\",\"ossId\":\"1902559241060487170\"}}', 0, '', '2025-03-20 11:14:06', 292); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902559521512624130, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/pic_20250320111512.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T031512Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=5b6e46f83c08d35ccdb1ae520bbd1a389384bd06162791cc76821a260f52ae0c\",\"fileName\":\"pic.jpg\",\"ossId\":\"1902559521399377922\"}}', 0, '', '2025-03-20 11:15:12', 118); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902559621710352386, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902559241060487170', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 11:15:36', 150); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902559734608433154, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/%E5%85%BB%E8%80%81%E9%87%91_20250320111603.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T031603Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=5fe20a72d0b90db04ae28268e38a2bd60cd5d16b27e223077d16038440950502\",\"fileName\":\"养老金.jpeg\",\"ossId\":\"1902559734402912258\"}}', 0, '', '2025-03-20 11:16:03', 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 (1902559751847022593, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/20/WechatIMG9_20250320111607.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250320T031607Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250320%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=2e82603e8988adf43306e8d742408f9c23295d500127c6ec9e9065ce92264378\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1902559751612141569\"}}', 0, '', '2025-03-20 11:16:07', 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 (1902596807474286594, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_spare_type\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 13:43:22', 388); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902597281317392385, '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-03-20 13:45:14\",\"params\":{\"treeCode\":\"type_code\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1902596806476042242\",\"dataName\":\"master\",\"tableName\":\"eims_spare_type\",\"tableComment\":\"备件类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpareType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spareType\",\"functionName\":\"备件类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:45:14\",\"columnId\":\"1902596806975164418\",\"tableId\":\"1902596806476042242\",\"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,\"list\":true,\"edit\":true,\"pk\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:45:14\",\"columnId\":\"1902596807021301762\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"edit\":true,\"pk\":false,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"TypeName\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:45:14\",\"columnId\":\"1902596807025496066\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_code\",\"columnComment\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 13:45:15', 203); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902598135101526017, '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-03-20 13:48:38\",\"params\":{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1902596806476042242\",\"dataName\":\"master\",\"tableName\":\"eims_spare_type\",\"tableComment\":\"备件类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpareType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spareType\",\"functionName\":\"备件类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:48:38\",\"columnId\":\"1902596806975164418\",\"tableId\":\"1902596806476042242\",\"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,\"list\":true,\"edit\":true,\"pk\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:48:38\",\"columnId\":\"1902596807021301762\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"edit\":true,\"pk\":false,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"TypeName\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:48:38\",\"columnId\":\"1902596807025496066\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_code\",\"columnComment\":\"类型编码\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 13:48:39', 49); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902600409840357377, '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\":7,\"path\":\"spare\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 13:57:41', 100); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902600578807894018, '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-03-20 13:58:21\",\"params\":{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"},\"tableId\":\"1902596806476042242\",\"dataName\":\"master\",\"tableName\":\"eims_spare_type\",\"tableComment\":\"备件类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpareType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spareType\",\"functionName\":\"备件类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:58:21\",\"columnId\":\"1902596806975164418\",\"tableId\":\"1902596806476042242\",\"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,\"list\":true,\"edit\":true,\"pk\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:58:21\",\"columnId\":\"1902596807021301762\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"edit\":true,\"pk\":false,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"TypeName\",\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 13:58:21\",\"columnId\":\"1902596807025496066\",\"tableId\":\"1902596806476042242\",\"columnName\":\"type_code\",\"c', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 13:58:21', 56); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902600682822438914, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1902596806476042242\"}', '', 0, '', '2025-03-20 13:58:46', 635); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902601054278389762, '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\":\"1902600680171638785\",\"parentId\":\"1902600409488035841\",\"menuName\":\"备件类型\",\"orderNum\":10,\"path\":\"spareType\",\"component\":\"eims/spare-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:spareType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:00:15', 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 (1902607063734583297, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902607063344513026\",\"typeName\":\"测试\",\"typeCode\":\"1\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:24:07', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902607128222007297, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902607128175869954\",\"typeName\":\"测试子类\",\"typeCode\":\"1\",\"parentId\":\"1902607063344513026\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:24:23', 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 (1902607178956308481, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902607178905976833\",\"typeName\":\"嘎哈\",\"typeCode\":\"1\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:24:35', 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 (1902607233700364290, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902607233629061121\",\"typeName\":\"1\",\"typeCode\":\"1\",\"parentId\":\"1902607178905976833\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:24:48', 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 (1902607271331659778, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902607178905976833', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:24:57', 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 (1902607307885019137, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902607233629061121', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:25:06', 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 (1902607318282698753, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902607063344513026', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:25:08', 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 (1902607352998952962, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902607128175869954', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:25:16', 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 (1902607435324751873, '000000', '设备类型', 3, 'org.dromara.eims.controller.EimsEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-03-20 14:25:36', 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 (1902607444011155457, '000000', '设备类型', 3, 'org.dromara.eims.controller.EimsEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-03-20 14:25:38', 4); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902608984084168705, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902608983685709826\",\"typeName\":\"测试\",\"typeCode\":\"1\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:31:45', 98); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902609020624945154, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609020444590081\",\"typeName\":\"测试子类\",\"typeCode\":\"1\",\"parentId\":\"1902608983685709826\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:31:54', 34); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902609037226000385, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902608983685709826', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-03-20 14:31: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 (1902609046201810946, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902609020444590081', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:32:00', 75); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902609054976294914, '000000', '备件类型', 3, 'org.dromara.eims.controller.EimsSpareTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/spareType/1902608983685709826', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:32:02', 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 (1902609191404421121, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609191249231873\",\"typeName\":\"工具\",\"typeCode\":\"10000\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:32:35', 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 (1902609260484608001, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609260400721922\",\"typeName\":\"启动配件\",\"typeCode\":\"20000\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:32:51', 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 (1902609350469206018, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609350246907905\",\"typeName\":\"油类\",\"typeCode\":\"30000\",\"parentId\":0,\"orderNum\":3,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:33:13', 57); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902609450897620993, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609450763403265\",\"typeName\":\"低值易耗品\",\"typeCode\":\"40000\",\"parentId\":0,\"orderNum\":4,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:33:37', 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 (1902609522817351682, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609522750242817\",\"typeName\":\"办公配件\",\"typeCode\":\"50000\",\"parentId\":0,\"orderNum\":5,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:33:54', 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 (1902609613049413633, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609612940361730\",\"typeName\":\"劳保\",\"typeCode\":\"60000\",\"parentId\":0,\"orderNum\":6,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:34:15', 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 (1902609679625601026, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609679487188993\",\"typeName\":\"厂务\",\"typeCode\":\"70000\",\"parentId\":0,\"orderNum\":7,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:34: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 (1902609722373947393, '000000', '备件类型', 1, 'org.dromara.eims.controller.EimsSpareTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902609722306838530\",\"typeName\":\"其它\",\"typeCode\":\"80000\",\"parentId\":0,\"orderNum\":8,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 14:34:41', 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 (1902629093490147330, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_spare\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:51:40', 350); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902629634370813953, '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-03-20 15:53:48\",\"params\":{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"modal\"},\"tableId\":\"1902629092508680193\",\"dataName\":\"master\",\"tableName\":\"eims_spare\",\"tableComment\":\"备件台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpare\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spare\",\"functionName\":\"备件台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 15:53:48\",\"columnId\":\"1902629092986830849\",\"tableId\":\"1902629092508680193\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 15:53:48\",\"columnId\":\"1902629093003608066\",\"tableId\":\"1902629092508680193\",\"columnName\":\"type\",\"columnComment\":\"类型\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"type\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"select\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Type\",\"increment\":true,\"query\":true,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 15:53:48\",\"columnId\":\"1902629093011996674\",\"tableId\":\"1902629092508680193\",\"columnName\":\"name\",\"columnComment\":\"备件名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"name\",\"isPk\":\"0\",\"isIncrement', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:53:49', 98); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902630155244650498, '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\":\"eims_spare_unit\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:55:53', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902630327940923394, '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\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:56:34', 42); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902630529477230594, '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\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":500,\"msg\":\"新增字典数据\'1\'失败,字典键值已存在\",\"data\":null}', 0, '', '2025-03-20 15:57:22', 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 (1902630550591356929, '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\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:57:27', 36); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902630591527763969, '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\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:57:37', 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 (1902630618270646274, '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\":4,\"dictLabel\":\"包\",\"dictValue\":\"4\",\"dictType\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:57:43', 30); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902630722918531073, '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\":5,\"dictLabel\":\"卷\",\"dictValue\":\"5\",\"dictType\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:58:08', 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 (1902630774688825346, '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\":6,\"dictLabel\":\"箱\",\"dictValue\":\"6\",\"dictType\":\"eims_spare_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 15:58:21', 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 (1902631906114912257, '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-03-20 16:02:50\",\"params\":{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"},\"tableId\":\"1902629092508680193\",\"dataName\":\"master\",\"tableName\":\"eims_spare\",\"tableComment\":\"备件台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpare\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spare\",\"functionName\":\"备件台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 16:02:50\",\"columnId\":\"1902629092986830849\",\"tableId\":\"1902629092508680193\",\"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,\"list\":true,\"pk\":true,\"edit\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 16:02:50\",\"columnId\":\"1902629093003608066\",\"tableId\":\"1902629092508680193\",\"columnName\":\"type\",\"columnComment\":\"类型\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"type\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"select\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"pk\":false,\"edit\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Type\",\"increment\":true,\"query\":true,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-20 16:02:50\",\"columnId\":\"1902629093011996674\",\"tableId\":\"1902629092508680193\",\"columnName\":\"name\",\"columnComment\":\"备件名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"name\",\"isPk\":\"0\",\"isIncremen', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-20 16:02:50', 102); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902631923747766273, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1902629092508680193\"}', '', 0, '', '2025-03-20 16:02:54', 578); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902637490591612929, '000000', '工具(治具)台账', 5, 'org.dromara.eims.controller.EimsFixtureController.export()', 'POST', 1, 'admin', '研发部门', '/eims/fixture/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"fixtureCode\":null,\"fixtureName\":null,\"fixtureType\":null,\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"borrowStatus\":null,\"status\":null,\"assetNo\":null,\"modelNo\":null,\"specNo\":null,\"madeIn\":null,\"purchaseDate\":null,\"deployDate\":null,\"serviceLife\":null,\"remark\":null,\"curBorrowId\":null}', '', 0, '', '2025-03-20 16:25:02', 4350); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902923676082098177, '000000', '备件台账', 1, 'org.dromara.eims.controller.EimsSpareController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":23456,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":1,\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":100,\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:22:14', 67); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902924690675847169, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":23456,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":1,\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":100,\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:26:16', 156); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902925383637774338, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":23456,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.12\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:29:01', 88); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902925841785794562, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":23456,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.12\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:30:50', 25533); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902926062989193217, '000000', '备件台账', 1, 'org.dromara.eims.controller.EimsSpareController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902926062875947009\",\"type\":0,\"name\":\"分工会就开了\",\"code\":\"fgh\",\"img\":345678,\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"10.87\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":null,\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:31:43', 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 (1902928420003385345, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902926062875947009\",\"type\":0,\"name\":\"分工会就开了\",\"code\":\"fgh\",\"img\":345678,\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"10.12\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":null,\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 11:41:05', 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 (1902985072043900930, '000000', '备件台账', 1, 'org.dromara.eims.controller.EimsSpareController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902985071116959745\",\"type\":\"1902609260400721922\",\"name\":\"启动配件\",\"code\":\"pj101\",\"img\":3456789,\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"2.21\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":\"1.11\",\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 15:26:12', 200); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902988371740606466, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321153918.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250321T073918Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250321%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=78b27829d6c912a503084edc6e13e6e3b394e567e068580a4a35c95600dca1a7\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902988371199541250\"}}', 0, '', '2025-03-21 15:39:18', 2361); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902989581340131330, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321154406.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250321T074406Z&X-Amz-SignedHeaders=host&X-Amz-Credential=3DKJiDUnYk7X7zcmRUbV%2F20250321%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=120&X-Amz-Signature=6497d58674fa19eced8e4f4df459f268686fe0a434e9d19d226ad898db23bbfe\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902989581277216770\"}}', 0, '', '2025-03-21 15:44:07', 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 (1902990207193202690, '000000', '对象存储配置', 2, 'org.dromara.system.controller.system.SysOssConfigController.edit()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"3DKJiDUnYk7X7zcmRUbV\",\"secretKey\":\"KVlc1Xq4NVYm4FruzLuQ85Kq3FwWyhXla9RqqUEs\",\"bucketName\":\"eims\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":null,\"region\":\"\",\"ext1\":null,\"remark\":\"\",\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 15:46:36', 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 (1902990331646590977, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321154705.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902990331403321346\"}}', 0, '', '2025-03-21 15:47:06', 147); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902991836189573121, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155304.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902991835950497793\"}}', 0, '', '2025-03-21 15:53:04', 133); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902992006595756033, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155344.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902992006369263618\"}}', 0, '', '2025-03-21 15:53:45', 75); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902992718834712577, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155634.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902992718331396098\"}}', 0, '', '2025-03-21 15:56:35', 142); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902992763428552705, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1902992718331396098\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 15:56: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 (1902994120160067586, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160208.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902994119954546690\"}}', 0, '', '2025-03-21 16:02:09', 82); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902994619064139778, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160407.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902994618867007490\"}}', 0, '', '2025-03-21 16:04:08', 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 (1902994762576445441, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160441.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1902994762270261249\"}}', 0, '', '2025-03-21 16:04:42', 93); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902994985365291010, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1902992718331396098\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:05: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 (1902995211304058882, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321160628.jpeg\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1902995210880434178\"}}', 0, '', '2025-03-21 16:06:29', 115); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902995216345612290, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1902992718331396098\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:06:30', 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 (1902995380858798082, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG60_20250321160709.jpeg\",\"fileName\":\"WechatIMG60.jpeg\",\"ossId\":\"1902995380590362626\"}}', 0, '', '2025-03-21 16:07:09', 123); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902995399007551489, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1902992718331396098\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:07: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 (1903002241246969857, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321163424.jpeg\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1903002241058226178\"}}', 0, '', '2025-03-21 16:34:25', 78); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903003420790112258, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321163906.jpeg\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1903003420504899585\"}}', 0, '', '2025-03-21 16:39:06', 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 (1903003425689059329, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1902992718331396098\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:39:07', 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 (1903003868284600322, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321164052.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1903003867449933826\"}}', 0, '', '2025-03-21 16:40:53', 219); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903004174548484098, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321164205.jpeg\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1903004174372323330\"}}', 0, '', '2025-03-21 16:42:06', 62); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903004199039025154, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903004174372323330\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:42:12', 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 (1903004642339209218, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:43:58', 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 (1903004781887897602, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321164430.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1903004781694959617\"}}', 0, '', '2025-03-21 16:44:31', 66); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903004994375532546, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:45:21', 54); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903005126475137025, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903004174372323330\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:45:53', 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 (1903006924774588418, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/21/WechatIMG60 (1)_20250321165301.jpeg\",\"fileName\":\"WechatIMG60 (1).jpeg\",\"ossId\":\"1903006924602621954\"}}', 0, '', '2025-03-21 16:53:02', 155); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903007042538061825, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:53:30', 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 (1903007503777284098, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-21 16:55:20', 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 (1903975662583406593, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324090226.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1903975662243667970\"}}', 0, '', '2025-03-24 09:02:27', 366); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903975723346288642, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903004174372323330\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-24 09:02:41', 4968); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903975919782322177, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903004174372323330\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-24 09:03:28', 12862); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903978183326556162, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324091227.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1903978183079092226\"}}', 0, '', '2025-03-24 09:12:28', 138); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903978836136419330, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-24 09:15:03', 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 (1903978988880388097, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324091539.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1903978988637118465\"}}', 0, '', '2025-03-24 09:15:40', 91); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903978997386436609, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903978988637118465\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-24 09:15:42', 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 (1903979186352414721, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":0,\"name\":\"测试\",\"code\":\"21345678\",\"img\":null,\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-24 09:16:27', 21529); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904713072812048385, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902926062875947009\",\"type\":\"1902609191249231873\",\"name\":\"分工会就开了\",\"code\":\"fgh\",\"img\":345678,\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"10.12\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":null,\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 09:52:39', 69); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904713099533959169, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":\"1902609350246907905\",\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1903978988637118465\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 09:52:45', 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 (1904713167448129537, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/26/WechatIMG9_20250326095301.jpeg\",\"fileName\":\"WechatIMG9.jpeg\",\"ossId\":\"1904713166944813057\"}}', 0, '', '2025-03-26 09:53:02', 520); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904713171000705026, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":\"1902609350246907905\",\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1904713166944813057\",\"modelNo\":\"1\",\"madeIn\":\"1\",\"supplier\":\"1\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 09:53:02', 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 (1904714309192175618, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902923675729776641\",\"type\":\"1902609350246907905\",\"name\":\"测试\",\"code\":\"21345678\",\"img\":\"1904713166944813057\",\"modelNo\":\"1\",\"madeIn\":\"上海看包\",\"supplier\":\"几趟结构设计\",\"unit\":\"1\",\"referPrice\":\"1.00\",\"upperStock\":10,\"lowerStock\":20,\"actualStock\":20,\"stockAmount\":\"100.00\",\"replaceCycle\":1,\"cycleUnit\":\"1\",\"remark\":\"111\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 09:57:34', 110); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904715315279876097, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/26/1742275990602_20250326100133.jpg\",\"fileName\":\"1742275990602.jpg\",\"ossId\":\"1904715315208572929\"}}', 0, '', '2025-03-26 10:01:34', 448); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904715319008612353, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902926062875947009\",\"type\":\"1902609191249231873\",\"name\":\"分工会就开了\",\"code\":\"fgh\",\"img\":\"1904715315208572929\",\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"10.12\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":null,\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 10:01: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 (1904715386000035842, '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', '', '{\"code\":200,\"msg\":\"操作成功\",\"data\":{\"url\":\"http://127.0.0.1:9000/eims/2025/03/26/pic_20250326100150.jpg\",\"fileName\":\"pic.jpg\",\"ossId\":\"1904715385878401026\"}}', 0, '', '2025-03-26 10:01:51', 89); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904715390773153793, '000000', '备件台账', 2, 'org.dromara.eims.controller.EimsSpareController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/spare', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1902985071116959745\",\"type\":\"1902609260400721922\",\"name\":\"启动配件\",\"code\":\"pj101\",\"img\":\"1904715385878401026\",\"modelNo\":null,\"madeIn\":null,\"supplier\":null,\"unit\":null,\"referPrice\":\"2.21\",\"upperStock\":null,\"lowerStock\":null,\"actualStock\":null,\"stockAmount\":\"1.11\",\"replaceCycle\":null,\"cycleUnit\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 10:01:52', 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 (1904721405048573953, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902559521399377922', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 10:25:46', 546); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904721414015995906, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902559734402912258', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 10:25:48', 83); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904721425214787586, '000000', 'OSS对象存储', 3, 'org.dromara.system.controller.system.SysOssController.remove()', 'DELETE', 1, 'admin', '研发部门', '/resource/oss/1902559751612141569', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 10:25:50', 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 (1904731720083623937, '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\":\"1902631921344430082\",\"parentId\":\"1902600409488035841\",\"menuName\":\"备件台账\",\"orderNum\":1,\"path\":\"index\",\"component\":\"eims/spare/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:spare:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 11:06:45', 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 (1904769113520132098, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_spare_inout\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 13:35:20', 581); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904769485642977282, '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-03-26 13:36:48\",\"params\":{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"},\"tableId\":\"1904769112538664961\",\"dataName\":\"master\",\"tableName\":\"eims_spare_inout\",\"tableComment\":\"备件出入库\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpareInout\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spareInout\",\"functionName\":\"备件出入库\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 13:36:48\",\"columnId\":\"1904769113029398530\",\"tableId\":\"1904769112538664961\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 13:36:48\",\"columnId\":\"1904769113046175746\",\"tableId\":\"1904769112538664961\",\"columnName\":\"order_code\",\"columnComment\":\"单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"orderCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"OrderCode\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 13:36:48\",\"columnId\":\"1904769113054564353\",\"tableId\":\"1904769112538664961\",\"columnName\":\"order_date\",\"columnComment\":\"单号日期\",\"columnType\":\"datetime\",\"javaType\":\"Date', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 13:36:49', 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 (1904769725745909761, '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\":\"spare_inout_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 13:37:46', 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 (1904769865017774082, '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\":\"spare_inout_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 13:38:19', 158); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904769910215593986, '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\":\"spare_inout_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 13:38:30', 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 (1904781326926532610, '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-03-26 14:23:52\",\"params\":{\"parentMenuId\":\"1902600409488035841\",\"popupComponent\":\"drawer\"},\"tableId\":\"1904769112538664961\",\"dataName\":\"master\",\"tableName\":\"eims_spare_inout\",\"tableComment\":\"备件出入库\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsSpareInout\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"spareInout\",\"functionName\":\"备件出入库\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 14:23:52\",\"columnId\":\"1904769113029398530\",\"tableId\":\"1904769112538664961\",\"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,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\",\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 14:23:52\",\"columnId\":\"1904769113046175746\",\"tableId\":\"1904769112538664961\",\"columnName\":\"order_code\",\"columnComment\":\"单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"orderCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"OrderCode\",\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-03-26 14:23:52\",\"columnId\":\"1904769113054564353\",\"tableId\":\"1904769112538664961\",\"columnName\":\"order_date\",\"columnComment\":\"单号日期\",\"columnType\":\"datetime\",\"javaType\":\"Date', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 14:23:52', 44); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904781352033636353, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1904769112538664961\"}', '', 0, '', '2025-03-26 14:23:58', 1029); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904801971229982722, '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\":\"1904781347730280449\",\"parentId\":\"1902600409488035841\",\"menuName\":\"出库单\",\"orderNum\":2,\"path\":\"out\",\"component\":\"eims/spare-out/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:spareInout:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 15:45:54', 69); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904810734880063489, '000000', '备件出入库', 1, 'org.dromara.eims.controller.EimsSpareInoutController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareInout', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1904810734586462209\",\"orderCode\":\"CK202503260001\",\"orderTime\":\"2025-03-26 16:20:36\",\"chargeUser\":\"1889581665270722561\",\"chargeDept\":100,\"type\":\"2\",\"partnerName\":\"上海\",\"associatedOrder\":null,\"remark\":\"爱思\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 16:20:44', 120); INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904813010940100610, '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\":\"1904781347730281234\",\"parentId\":\"1902600409488035841\",\"menuName\":\"入库单\",\"orderNum\":3,\"path\":\"in\",\"component\":\"eims/spare-in/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:spareInout:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 16:29: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 (1904814428749070338, '000000', '备件出入库', 1, 'org.dromara.eims.controller.EimsSpareInoutController.add()', 'POST', 1, 'admin', '研发部门', '/eims/spareInout', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1904814428589686785\",\"orderCode\":\"RK202503260001\",\"orderTime\":\"2025-03-26 16:35:21\",\"chargeUser\":1,\"chargeDept\":100,\"type\":\"1\",\"partnerName\":\"结果\",\"associatedOrder\":null,\"remark\":\"1212\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-03-26 16:35:24', 38); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '文件名', `original_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '原名', `file_suffix` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '文件后缀名', `url` varchar(500) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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; INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902988371199541250, '000000', '2025/03/21/1742275990602_20250321153918.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321153918.jpg', 103, '2025-03-21 15:39:18', 1, '2025-03-21 15:39:18', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902989581277216770, '000000', '2025/03/21/1742275990602_20250321154406.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321154406.jpg', 103, '2025-03-21 15:44:07', 1, '2025-03-21 15:44:07', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902990331403321346, '000000', '2025/03/21/1742275990602_20250321154705.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321154705.jpg', 103, '2025-03-21 15:47:06', 1, '2025-03-21 15:47:06', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902991835950497793, '000000', '2025/03/21/1742275990602_20250321155304.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155304.jpg', 103, '2025-03-21 15:53:04', 1, '2025-03-21 15:53:04', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902992006369263618, '000000', '2025/03/21/1742275990602_20250321155344.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155344.jpg', 103, '2025-03-21 15:53:45', 1, '2025-03-21 15:53:45', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902992718331396098, '000000', '2025/03/21/1742275990602_20250321155634.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321155634.jpg', 103, '2025-03-21 15:56:35', 1, '2025-03-21 15:56:35', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902994119954546690, '000000', '2025/03/21/1742275990602_20250321160208.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160208.jpg', 103, '2025-03-21 16:02:09', 1, '2025-03-21 16:02:09', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902994618867007490, '000000', '2025/03/21/1742275990602_20250321160407.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160407.jpg', 103, '2025-03-21 16:04:08', 1, '2025-03-21 16:04:08', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902994762270261249, '000000', '2025/03/21/1742275990602_20250321160441.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321160441.jpg', 103, '2025-03-21 16:04:42', 1, '2025-03-21 16:04:42', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902995210880434178, '000000', '2025/03/21/WechatIMG9_20250321160628.jpeg', 'WechatIMG9.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321160628.jpeg', 103, '2025-03-21 16:06:29', 1, '2025-03-21 16:06:29', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1902995380590362626, '000000', '2025/03/21/WechatIMG60_20250321160709.jpeg', 'WechatIMG60.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG60_20250321160709.jpeg', 103, '2025-03-21 16:07:09', 1, '2025-03-21 16:07:09', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903002241058226178, '000000', '2025/03/21/WechatIMG9_20250321163424.jpeg', 'WechatIMG9.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321163424.jpeg', 103, '2025-03-21 16:34:25', 1, '2025-03-21 16:34:25', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903003420504899585, '000000', '2025/03/21/WechatIMG9_20250321163906.jpeg', 'WechatIMG9.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321163906.jpeg', 103, '2025-03-21 16:39:06', 1, '2025-03-21 16:39:06', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903003867449933826, '000000', '2025/03/21/1742275990602_20250321164052.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321164052.jpg', 103, '2025-03-21 16:40:53', 1, '2025-03-21 16:40:53', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903004174372323330, '000000', '2025/03/21/WechatIMG9_20250321164205.jpeg', 'WechatIMG9.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG9_20250321164205.jpeg', 103, '2025-03-21 16:42:06', 1, '2025-03-21 16:42:06', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903004781694959617, '000000', '2025/03/21/1742275990602_20250321164430.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/21/1742275990602_20250321164430.jpg', 103, '2025-03-21 16:44:31', 1, '2025-03-21 16:44:31', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903006924602621954, '000000', '2025/03/21/WechatIMG60 (1)_20250321165301.jpeg', 'WechatIMG60 (1).jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/21/WechatIMG60 (1)_20250321165301.jpeg', 103, '2025-03-21 16:53:02', 1, '2025-03-21 16:53:02', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903975662243667970, '000000', '2025/03/24/1742275990602_20250324090226.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324090226.jpg', 103, '2025-03-24 09:02:27', 1, '2025-03-24 09:02:27', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903978183079092226, '000000', '2025/03/24/1742275990602_20250324091227.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324091227.jpg', 103, '2025-03-24 09:12:28', 1, '2025-03-24 09:12:28', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1903978988637118465, '000000', '2025/03/24/1742275990602_20250324091539.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/24/1742275990602_20250324091539.jpg', 103, '2025-03-24 09:15:40', 1, '2025-03-24 09:15:40', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1904713166944813057, '000000', '2025/03/26/WechatIMG9_20250326095301.jpeg', 'WechatIMG9.jpeg', '.jpeg', 'http://127.0.0.1:9000/eims/2025/03/26/WechatIMG9_20250326095301.jpeg', 103, '2025-03-26 09:53:02', 1, '2025-03-26 09:53:02', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1904715315208572929, '000000', '2025/03/26/1742275990602_20250326100133.jpg', '1742275990602.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/26/1742275990602_20250326100133.jpg', 103, '2025-03-26 10:01:34', 1, '2025-03-26 10:01:34', 1, 'minio'); INSERT INTO `sys_oss` (`oss_id`, `tenant_id`, `file_name`, `original_name`, `file_suffix`, `url`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `service`) VALUES (1904715385878401026, '000000', '2025/03/26/pic_20250326100150.jpg', 'pic.jpg', '.jpg', 'http://127.0.0.1:9000/eims/2025/03/26/pic_20250326100150.jpg', 103, '2025-03-26 10:01:51', 1, '2025-03-26 10:01:51', 1, 'minio'); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `config_key` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '配置key', `access_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT 'accessKey', `secret_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '秘钥', `bucket_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '桶名称', `prefix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '前缀', `endpoint` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '访问站点', `domain` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '自定义域名', `is_https` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '是否https(Y=是,N=否)', `region` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '域', `access_policy` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1' COMMENT '桶权限类型(0=private 1=public 2=custom)', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '1' COMMENT '是否默认(0=是,1=否)', `ext1` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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', '3DKJiDUnYk7X7zcmRUbV', 'KVlc1Xq4NVYm4FruzLuQ85Kq3FwWyhXla9RqqUEs', 'eims', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 103, 1, '2024-12-24 16:54:24', 1, '2025-03-21 15:46:36', ''); 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, '2025-03-19 16:42:32', 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `dept_id` bigint NOT NULL COMMENT '部门id', `post_code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码', `post_category` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '岗位类别编码', `post_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称', `post_sort` int NOT NULL COMMENT '显示顺序', `status` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `role_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称', `role_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色权限字符串', `role_sort` int NOT NULL COMMENT '显示顺序', `data_scope` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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', '2', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 14:25:45', ''); 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', '2', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 14:26:11', ''); 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 (1889561357813903361, '000000', '操作工', 'operator', 2, '1', 0, 1, '0', '0', 103, 1, '2025-02-12 14:25:09', 1, '2025-03-10 18:22:01', ''); 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 (1889561934287433729, '000000', '线长', 'line', 3, '1', 1, 1, '0', '0', 103, 1, '2025-02-12 14:27:26', 1, '2025-02-19 14:54:43', ''); 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 (1889562679283904514, '000000', '维修工程师', 'repair', 4, '1', 1, 1, '0', '0', 103, 1, '2025-02-12 14:30:24', 1, '2025-03-10 18:22:11', ''); 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 (1897535901137448961, '000000', '管理员', 'leader', 1, '1', 1, 1, '0', '0', 103, 1, '2025-03-06 14:33:08', 1, '2025-03-10 18:21:45', ''); 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 (1889561357813903361, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1875349550770728962); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1876074027672731650); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1876127568837582849); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1877195885923127297); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1879000339785752577); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1879762189070733313); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888814115854311426); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453634); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453635); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453636); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453637); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453638); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453639); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1889589456286871554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890265974959865858); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890265974959865859); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890266675786121217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891320717983477762); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891410873344151554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1892046376327188482); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894280983377555458); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894280983377555459); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894280983377555460); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052225); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1894662033104052230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1896751542185267202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1896803187283304450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736449); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736451); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736452); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736453); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1897452547813736454); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728962); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728963); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728964); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728965); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728966); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728967); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876074027672731650); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582849); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582850); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582851); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582852); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582853); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582854); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127297); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127298); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127299); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127300); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127301); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127302); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752577); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752578); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752579); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752580); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752581); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752582); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733313); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733314); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733315); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733316); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733317); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733318); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888814115854311426); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453634); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453635); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453636); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453637); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453638); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453639); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1889589456286871554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1889865233922322434); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890265974959865858); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890265974959865859); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890266675786121217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891320717983477762); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891320717983477763); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891410873344151554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891716266575327234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891716266575327235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728962); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728963); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728964); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728965); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728966); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1875349550770728967); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876074027672731650); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582849); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582850); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582851); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582852); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582853); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1876127568837582854); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127297); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127298); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127299); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127300); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127301); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1877195885923127302); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752577); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752578); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752579); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752580); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752581); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879000339785752582); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733313); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733314); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733315); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733316); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733317); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1879762189070733318); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888814115854311426); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453634); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453635); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453636); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453637); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453638); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453639); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1889865233922322434); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865858); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865859); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865860); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865861); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865862); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890265974959865863); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1890266675786121217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477762); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477763); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477764); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477765); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477766); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891320717983477767); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891410873344151554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1891716266575327239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1892046376327188482); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555458); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555459); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555460); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555461); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555462); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894280983377555463); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052225); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894662033104052230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1894912845009076225); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011586); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011587); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011588); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011589); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011590); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1895366080371011591); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896751542185267202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304451); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304452); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304453); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304454); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1896803187283304455); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736449); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736451); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736452); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736453); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1897452547813736454); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1600); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1601); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1602); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1603); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1620); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1621); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1622); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1623); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728962); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728963); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728964); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728965); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728966); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1875349550770728967); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876074027672731650); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582849); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582850); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582851); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582852); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582853); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1876127568837582854); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127297); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127298); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127299); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127300); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127301); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1877195885923127302); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752577); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752578); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752579); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752580); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752581); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879000339785752582); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733313); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733314); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733315); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733316); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733317); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1879762189070733318); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888814115854311426); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453634); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453635); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453636); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453637); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453638); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1888837193552453639); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1889589456286871554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1889865233922322434); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865858); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865859); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865860); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865861); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865862); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890265974959865863); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1890266675786121217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477762); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477763); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477764); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477765); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477766); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891320717983477767); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891410873344151554); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1891716266575327239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1892046376327188482); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555458); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555459); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555460); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555461); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555462); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894280983377555463); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052225); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894662033104052230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1894912845009076225); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011586); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011587); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011588); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011589); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011590); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1895366080371011591); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896751542185267202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304451); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304452); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304453); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304454); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1896803187283304455); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736449); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736450); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736451); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736452); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736453); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1897535901137448961, 1897452547813736454); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '租户id', `auth_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '平台+平台唯一id', `source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户来源', `open_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '平台编号唯一id', `user_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '登录账号', `nick_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户昵称', `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户邮箱', `avatar` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '头像地址', `access_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户的授权令牌', `expire_in` int DEFAULT NULL COMMENT '用户的授权令牌的有效期,部分平台可能没有', `refresh_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '刷新令牌,部分平台可能没有', `access_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '平台的授权信息,部分平台可能没有', `union_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '用户的 unionid', `scope` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '授予的权限,部分平台可能没有', `token_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '个别平台的授权信息,部分平台可能没有', `id_token` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'id token,部分平台可能没有', `mac_algorithm` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有', `mac_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有', `code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '用户的授权code,部分平台可能没有', `oauth_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有', `oauth_token_secret` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '租户编号', `contact_user_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系人', `contact_phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话', `company_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '企业名称', `license_number` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '统一社会信用代码', `address` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '地址', `intro` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '企业简介', `domain` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '域名', `remark` varchar(200) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '租户状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '套餐名称', `menu_ids` varchar(3000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关联菜单id', `remark` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注', `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号', `dept_id` bigint DEFAULT NULL COMMENT '部门ID', `user_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户账号', `nick_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户昵称', `user_type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'sys_user' COMMENT '用户类型(sys_user系统用户)', `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户邮箱', `phonenumber` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '手机号码', `sex` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)', `avatar` bigint DEFAULT NULL COMMENT '头像地址', `password` 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停用)', `del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `login_ip` varchar(128) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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-04-08 08:16:04', 103, 1, '2024-12-24 16:54:24', 1, '2025-04-08 08:16:04', '管理员'); 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', '2', '0:0:0:0:0:0:0:1', '2024-12-25 18:54:12', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 15:46:16', 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', '2', '127.0.0.1', '2024-12-24 16:54:24', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 15:46:11', 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 (1888782469222465537, '000000', 101, 'zhuguifei', 'zhuguifei', 'sys_user', '', '', '0', NULL, '$2a$10$w8HBoQ6jd95Ig8WbHrgRyuOiKx4guC.sNcTd//VudfvJA9.R67M8O', '0', '2', '0:0:0:0:0:0:0:1', '2025-02-10 11:00:26', 103, 1, '2025-02-10 10:50:07', 1, '2025-02-12 15:46:13', 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 (1889581563890200577, '000000', 100, 'zhouyuhua', '周育华', 'sys_user', '', '', '0', NULL, '$2a$10$LI5BfXRN1zZyuq./5ESJfeghM26rxLO/GCQbAVy6g4sq7fkyHJIAK', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-27 14:55:36', 103, 1, '2025-02-12 15:45:26', 1889581563890200577, '2025-02-27 14:55:36', 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 (1889581665270722561, '000000', 100, 'ningcanmin', '宁灿敏', 'sys_user', '', '', '0', NULL, '$2a$10$9yPk21heyTmsVHmRnTKGCuGsVN1U9Rqyxse3gDPx06kLjMY2mBwCG', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-13 08:57:27', 103, 1, '2025-02-12 15:45:50', 1889581665270722561, '2025-02-13 08:57:27', 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 (1889581724095836162, '000000', 100, 'baoshiwei', '鲍世威', 'sys_user', '', '', '0', NULL, '$2a$10$qwP/k0mZ08egastJ0zpVVuAj8p0sjw0ObKme5Vq1Wwx8sU6t5kmzu', '0', '0', '0:0:0:0:0:0:0:1', '2025-03-06 16:26:01', 103, 1, '2025-02-12 15:46:04', 1889581724095836162, '2025-03-06 16:26:01', 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 (1891772104536256514, '000000', 103, 'zhangsan', '张三', 'sys_user', '', '', '0', NULL, '$2a$10$PqB1ldmYnhI22Izg1HUx8.osnN/ARNrkrKoT9g6E2FOJ/1pBf4pwy', '0', '0', '', NULL, 103, 1, '2025-02-18 16:49:52', 1, '2025-02-18 16:49:52', 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 (1892105619105386498, '000000', 100, 'sunjian', '孙健', 'sys_user', '', '', '0', NULL, '$2a$10$Y2wA/HUUqSBs7rdmyM8j/eTUO2SnxaCeBFTSF403/jHvV2ByiXr9K', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-19 14:55:22', 103, 1, '2025-02-19 14:55:08', 1892105619105386498, '2025-02-19 14:55:22', 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 (1897537489230966786, '000000', 100, 'liliangting', '李良庭', 'sys_user', '', '', '0', NULL, '$2a$10$F22otjxmWBkuYZDDQW879OrLcYcxNARAz8WTng55bj0WIUkFASv2C', '0', '0', '0:0:0:0:0:0:0:1', '2025-03-06 16:22:59', 103, 1, '2025-03-06 14:39:27', 1897537489230966786, '2025-03-06 16:23:00', 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); INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1892105619105386498, 4); 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 (1889581563890200577, 1889561357813903361); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1889581665270722561, 1889561934287433729); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1889581724095836162, 1889562679283904514); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1891772104536256514, 1889562679283904514); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1892105619105386498, 1889561357813903361); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1897537489230966786, 1897535901137448961); 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'key键', `value` varchar(255) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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) CHARACTER SET utf8mb4 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; -- ---------------------------- -- Procedure structure for insert_inspect_st -- ---------------------------- DROP PROCEDURE IF EXISTS `insert_inspect_st`; delimiter ;; CREATE PROCEDURE `insert_inspect_st`(IN order_id bigint,IN equ_id bigint, IN plan_time date,IN createBy BIGINT,IN createDept BIGINT) BEGIN -- 定义局部变量 DECLARE ymEqu VARCHAR(100); DECLARE equName VARCHAR(100); DECLARE assetNo VARCHAR(100); DECLARE uniId VARCHAR(100); DECLARE tempUniId VARCHAR(100); -- 生成唯一id SET tempUniId = CONCAT( DATE_FORMAT(plan_time, '%Y%m'),'_',equ_id); -- 查询eims_inspect_st汇总表是否已生成统计,已存在则不新增 SELECT st.uni_id INTO uniId FROM eims_inspect_st as st WHERE st.uni_id = tempUniId; IF uniId IS NULL THEN -- 查询设备名称并存入变量 SELECT equ.equ_name, equ.asset_no INTO equName, assetNo FROM eims_equ as equ WHERE equ.equ_id = equ_id; -- 判断equName是否为空 IF equName IS NULL THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = '触发器inser_inspect_st查询设备失败'; END IF; -- 生成年月+设备名称的字符串 SET ymEqu = CONCAT(DATE_FORMAT(plan_time, '%Y%m'), equName); -- 插入操作 INSERT INTO eims_inspect_st (id, title,equ_id,plan_time,uni_id,status,create_by,create_time,create_dept) VALUES (UUID_SHORT(), ymEqu,equ_id,plan_time,tempUniId,'0',createBy,NOW(),createDept); END IF; END ;; delimiter ; -- ---------------------------- -- Procedure structure for insert_maint_st -- ---------------------------- DROP PROCEDURE IF EXISTS `insert_maint_st`; delimiter ;; CREATE PROCEDURE `insert_maint_st`(IN order_id bigint,IN equ_id bigint, IN plan_time date,IN createBy BIGINT,IN createDept BIGINT) BEGIN -- 定义局部变量 DECLARE ymEqu VARCHAR(100); DECLARE equName VARCHAR(100); DECLARE assetNo VARCHAR(100); DECLARE uniId VARCHAR(100); DECLARE tempUniId VARCHAR(100); DECLARE record_count INT DEFAULT 0; DECLARE nedAdd BOOL DEFAULT FALSE; -- 生成唯一id SET tempUniId = CONCAT( DATE_FORMAT(plan_time, '%Y%m'),'_',equ_id); -- 查询eims_maint_st汇总表是否已生成统计,已存在则不新增 SELECT st.uni_id INTO uniId FROM eims_maint_st as st WHERE st.uni_id = tempUniId; IF uniId IS NULL THEN -- 查询设备名称并存入变量 SELECT equ.equ_name, equ.asset_no INTO equName, assetNo FROM eims_equ as equ WHERE equ.equ_id = equ_id; -- 判断equName是否为空 IF equName IS NULL THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = '触发器inser_maint_st查询设备失败'; END IF; -- 生成年月+设备名称的字符串 SET ymEqu = CONCAT(DATE_FORMAT(plan_time, '%Y%m'), equName); -- 插入操作 INSERT INTO eims_maint_st (id, title,equ_id,plan_time,uni_id,status,create_by,create_time,create_dept) VALUES (UUID_SHORT(), ymEqu,equ_id,plan_time,tempUniId,'0',createBy,NOW(),createDept); END IF; END ;; delimiter ; -- ---------------------------- -- Triggers structure for table eims_inspect_record -- ---------------------------- DROP TRIGGER IF EXISTS `insp_record_add`; delimiter ;; CREATE TRIGGER `eims`.`insp_record_add` AFTER INSERT ON `eims_inspect_record` FOR EACH ROW BEGIN CALL insert_inspect_st(NEW.id,NEW.equ_id, NEW.plan_time,NEW.create_by,NEW.create_dept); END ;; delimiter ; -- ---------------------------- -- Triggers structure for table eims_maint_order -- ---------------------------- DROP TRIGGER IF EXISTS `maint_order_add`; delimiter ;; CREATE TRIGGER `eims`.`maint_order_add` AFTER INSERT ON `eims_maint_order` FOR EACH ROW BEGIN CALL insert_maint_st(NEW.id,NEW.equ_id, NEW.plan_time,NEW.create_by,NEW.create_dept); END ;; delimiter ; SET FOREIGN_KEY_CHECKS = 1;